Cache webview view title across reloads

Fixes #105867
This commit is contained in:
Matt Bierner
2020-09-09 21:51:22 -07:00
parent cf38af84ff
commit ec8016f7d1
4 changed files with 30 additions and 9 deletions

View File

@@ -686,7 +686,7 @@ export interface ExtHostCustomEditorsShape {
}
export interface ExtHostWebviewViewsShape {
$resolveWebviewView(webviewHandle: WebviewHandle, viewType: string, state: any, cancellation: CancellationToken): Promise<void>;
$resolveWebviewView(webviewHandle: WebviewHandle, viewType: string, title: string | undefined, state: any, cancellation: CancellationToken): Promise<void>;
$onDidChangeWebviewViewVisibility(webviewHandle: WebviewHandle, visible: boolean): void;