Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1498)

Unified Diff: android_webview/lib/main/aw_main_delegate.cc

Issue 12211149: Revert 182106 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | android_webview/native/aw_contents.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/lib/main/aw_main_delegate.cc
===================================================================
--- android_webview/lib/main/aw_main_delegate.cc (revision 182123)
+++ android_webview/lib/main/aw_main_delegate.cc (working copy)
@@ -31,6 +31,15 @@
// Set the command line to enable synchronous API compatibility.
command_line->AppendSwitch(switches::kEnableWebViewSynchronousAPIs);
+ // TODO(leandrogracia): enable with the CapturePicture API support.
+ if (false) {
+ // Enable impl-side painting in the compositor.
+ command_line->AppendSwitch(switches::kForceCompositingMode);
+ command_line->AppendSwitch(switches::kEnableThreadedCompositing);
+ command_line->AppendSwitch(switches::kEnableDeferredImageDecoding);
+ command_line->AppendSwitch(cc::switches::kEnableImplSidePainting);
+ }
+
return false;
}
« no previous file with comments | « no previous file | android_webview/native/aw_contents.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698