diff options
-rw-r--r-- | android_webview/lib/main/aw_main_delegate.cc | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc index a812e16..cdc9ba5 100644 --- a/android_webview/lib/main/aw_main_delegate.cc +++ b/android_webview/lib/main/aw_main_delegate.cc @@ -72,6 +72,7 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) { ->set_fling_touchscreen_tap_suppression_enabled(false); base::CommandLine* cl = base::CommandLine::ForCurrentProcess(); + cl->AppendSwitch(switches::kIPCSyncCompositing); cl->AppendSwitch(cc::switches::kEnableBeginFrameScheduling); // WebView uses the Android system's scrollbars and overscroll glow. @@ -139,9 +140,6 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) { cl->AppendSwitch(switches::kDisableRendererBackgrounding); } - // Enabled temporarily to gather performance metrics. - cl->AppendSwitch(switches::kIPCSyncCompositing); - return false; } |