Skip to content

Commit d0f3c71

Browse files
zzzariescopybara-github
authored andcommitted
Added a new data service interface to get custom call text, not implemented so this is a no-op.
PiperOrigin-RevId: 828438136
1 parent b354ab7 commit d0f3c71

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

frontend/app/services/data_service_v2/data_service_v2.ts

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -255,6 +255,12 @@ export class DataServiceV2 implements DataServiceV2Interface {
255255
return '';
256256
}
257257

258+
getCustomCallText(
259+
sessionId: string, moduleName: string, opName: string,
260+
programId: string): Observable<string> {
261+
return of('');
262+
}
263+
258264
// Download by program id is not implemented yet, as the processor is missing
259265
// hlo proto map by program id.
260266
downloadHloProto(

frontend/app/services/data_service_v2/data_service_v2_interface.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,10 @@ export interface DataServiceV2Interface {
7777
programId: string,
7878
): string;
7979

80+
getCustomCallText(
81+
sessionId: string, moduleName: string, opName: string,
82+
programId: string): Observable<string>;
83+
8084
downloadHloProto(
8185
sessionId: string,
8286
moduleName: string,

0 commit comments

Comments
 (0)