This white screen is shown because the webview is deleted and
window object remains. This patch fixes this issue using
evas_object_hide() API for preventing the white screen issue
during the termination of web application.
Bug: http://suprem.sec.samsung.net/jira/browse/TWF-2790
Change-Id: Ie697d4285d957ccc830518e78d3135c3770801c2
Signed-off-by: Youngcheol Kang <ychul.kang@samsung.com>
LOGGER(DEBUG) << "plugin_session_count : " <<
XWalkExtensionRendererController::plugin_session_count;
+
+ // Hide the window object for preventing the white screen
+ // during termination of web application.
+ evas_object_hide(window_->evas_object());
+
session_counter.application = this;
session_counter.timer = ecore_timer_add(SESSION_COUNTER_INTERVAL,
CheckPluginSession, &session_counter);