From 3d8bb058c24e35eac8d9b802e511f0165f734d6c Mon Sep 17 00:00:00 2001 From: DongHyun Song Date: Fri, 3 Dec 2021 10:04:19 +0900 Subject: [PATCH] [VD] Correct spelling Suface --> Surface Change-Id: Ic51b7a5ea3d64b284ed8c87ad8f838d62eebce45 Signed-off-by: DongHyun Song --- wrt_app/common/web_application_delegate.ts | 2 +- wrt_app/src/web_application.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/wrt_app/common/web_application_delegate.ts b/wrt_app/common/web_application_delegate.ts index 7d3bd18..62f2661 100644 --- a/wrt_app/common/web_application_delegate.ts +++ b/wrt_app/common/web_application_delegate.ts @@ -28,7 +28,7 @@ export class WebApplicationDelegate { beforeQuit() { } canIgnoreSuspend() { return false; } clearCache() { } - clearSuface(webContents: any) { } + clearSurface(webContents: any) { } focus(webContents: any) { } handleAppControlEvent(appControl: any) { return true; } handleProxyInfo(authInfo: any, callback: any) { return false; } diff --git a/wrt_app/src/web_application.ts b/wrt_app/src/web_application.ts index aa020c0..640b49c 100644 --- a/wrt_app/src/web_application.ts +++ b/wrt_app/src/web_application.ts @@ -416,7 +416,7 @@ export class WebApplication { } private closeWindows() { - this.profileDelegate.clearSuface(this.mainWindow.webContents); + this.profileDelegate.clearSurface(this.mainWindow.webContents); this.windowList.slice().forEach((window) => { if (window != this.mainWindow) window.destroy(); -- 2.7.4