Rename WebviewPanelHandle -> WebviewHandle

This commit is contained in:
Matt Bierner
2020-08-26 15:06:02 -07:00
parent 79d7a9569d
commit 7e4ccf1676
7 changed files with 52 additions and 52 deletions

View File

@@ -28,7 +28,7 @@ export class MainThreadWebviewsViews extends Disposable implements extHostProtoc
this._proxyViews = context.getProxy(extHostProtocol.ExtHostContext.ExtHostWebviewViews);
}
public $setWebviewViewTitle(handle: extHostProtocol.WebviewPanelHandle, value: string | undefined): void {
public $setWebviewViewTitle(handle: extHostProtocol.WebviewHandle, value: string | undefined): void {
const webviewView = this._webviewViews.get(handle);
if (!webviewView) {
throw new Error('unknown webview view');