summaryrefslogtreecommitdiffstats
path: root/android_webview
diff options
context:
space:
mode:
authorboliu <boliu@chromium.org>2016-02-09 08:14:08 -0800
committerCommit bot <commit-bot@chromium.org>2016-02-09 16:15:17 +0000
commit315cb6bb87f60fdc3a8b8c706b32556ecebf4c17 (patch)
tree837dec22120bbcd313da8a343bddc8588c5022ac /android_webview
parent27e56244ef4b65d7ca3a36b05931d07e9a618293 (diff)
downloadchromium_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')
-rw-r--r--android_webview/lib/main/aw_main_delegate.cc3
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;
}