From: DongHyun Song Date: Fri, 20 Sep 2019 07:58:54 +0000 (+0900) Subject: [VD] Fix crash problem by low memory callback X-Git-Tag: accepted/tizen/unified/20190925.033655~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=47d30ddaf080e5db9ca9ef4585987e6c51db7ebe;p=platform%2Fframework%2Fweb%2Fwrtjs.git [VD] Fix crash problem by low memory callback This is workaround patch to resolve crash problem by low memory callback This will be fixed after chromium-efl released on INT Change-Id: I71382c7005a970f9fe23b2d88c083d45d8b2fae8 Signed-off-by: DongHyun Song --- diff --git a/wrt_app/src/web_application.js b/wrt_app/src/web_application.js index ecc4b49..b487d3f 100755 --- a/wrt_app/src/web_application.js +++ b/wrt_app/src/web_application.js @@ -410,9 +410,11 @@ class WebApplication { this.windowList.forEach((window) => { //clear webframe cache wrt.clearWebCache(window.webContents); + /* FIXME: will unblock after chromium-efl released window.webContents.session.clearCache(function() { console.log('clear session Cache complete'); }) + */ }); } }