From 47d30ddaf080e5db9ca9ef4585987e6c51db7ebe Mon Sep 17 00:00:00 2001 From: DongHyun Song Date: Fri, 20 Sep 2019 16:58:54 +0900 Subject: [PATCH] [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 --- wrt_app/src/web_application.js | 2 ++ 1 file changed, 2 insertions(+) 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'); }) + */ }); } } -- 2.7.4