diff options
author | boliu <boliu@chromium.org> | 2016-02-09 08:14:08 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-02-09 16:15:17 +0000 |
commit | 315cb6bb87f60fdc3a8b8c706b32556ecebf4c17 (patch) | |
tree | 837dec22120bbcd313da8a343bddc8588c5022ac /android_webview/lib | |
parent | 27e56244ef4b65d7ca3a36b05931d07e9a618293 (diff) | |
download | chromium_src-315cb6bb87f60fdc3a8b8c706b32556ecebf4c17.zip chromium_src-315cb6bb87f60fdc3a8b8c706b32556ecebf4c17.tar.gz chromium_src-315cb6bb87f60fdc3a8b8c706b32556ecebf4c17.tar.bz2 |
aw: Enable ipc-based sync compositing by default
Only temprarily though to gather perf and compatibility results.
BUG=583455
Review URL: https://codereview.chromium.org/1687473002
Cr-Commit-Position: refs/heads/master@{#374387}
Diffstat (limited to 'android_webview/lib')
-rw-r--r-- | android_webview/lib/main/aw_main_delegate.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc index e0025fe..44806dc 100644 --- a/android_webview/lib/main/aw_main_delegate.cc +++ b/android_webview/lib/main/aw_main_delegate.cc @@ -143,6 +143,9 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) { cl->AppendSwitch(switches::kDisableRendererBackgrounding); } + // Enabled temporarily to gather performance metrics. + cl->AppendSwitch(switches::kIPCSyncCompositing); + return false; } |