diff options
author | boliu <boliu@chromium.org> | 2016-02-26 12:14:46 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-26 20:17:00 +0000 |
commit | 38c0829dd52db27c49c3a91a9fdc800eac2a8005 (patch) | |
tree | 121cb0e6af9742647a05b5a564fd042cda5e74bf | |
parent | 201d12d8c8304085fd4eae91830fdbe0b9f140e0 (diff) | |
download | chromium_src-38c0829dd52db27c49c3a91a9fdc800eac2a8005.zip chromium_src-38c0829dd52db27c49c3a91a9fdc800eac2a8005.tar.gz chromium_src-38c0829dd52db27c49c3a91a9fdc800eac2a8005.tar.bz2 |
aw: Enable IPC path by default
Remove the comment that says it's only temporary.
BUG=583455
Review URL: https://codereview.chromium.org/1737993002
Cr-Commit-Position: refs/heads/master@{#377956}
-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; } |