[VD] Fix crash problem by low memory callback 27/214327/2
authorDongHyun Song <dh81.song@samsung.com>
Fri, 20 Sep 2019 07:58:54 +0000 (16:58 +0900)
committerDongHyun Song <dh81.song@samsung.com>
Fri, 20 Sep 2019 08:12:21 +0000 (08:12 +0000)
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 <dh81.song@samsung.com>
wrt_app/src/web_application.js

index ecc4b49..b487d3f 100755 (executable)
@@ -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');
                 })
+                */
             });
         }
     }