From: DongHyun Song Date: Fri, 3 Dec 2021 01:04:19 +0000 (+0900) Subject: [VD] Correct spelling X-Git-Tag: submit/tizen/20211203.160018^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=3d8bb058c24e35eac8d9b802e511f0165f734d6c;p=platform%2Fframework%2Fweb%2Fwrtjs.git [VD] Correct spelling Suface --> Surface Change-Id: Ic51b7a5ea3d64b284ed8c87ad8f838d62eebce45 Signed-off-by: DongHyun Song --- diff --git a/wrt_app/common/web_application_delegate.ts b/wrt_app/common/web_application_delegate.ts index 7d3bd186..62f26611 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 aa020c09..640b49c5 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();