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

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

Issue 11861008: Expose the capturePicture feature in RenderView for Android WebView legacy API support. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed sync IPC issues. 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
Index: android_webview/lib/main/aw_main_delegate.cc
diff --git a/android_webview/lib/main/aw_main_delegate.cc b/android_webview/lib/main/aw_main_delegate.cc
index 5c6399bb3f4499a399315aa372a9a1b633a7c6b2..2a8954fc0524c584175f779900c20158c8be490a 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -31,15 +31,6 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
// 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;
}

Powered by Google App Engine
This is Rietveld 408576698