summaryrefslogtreecommitdiffstats
path: root/android_webview/lib
diff options
context:
space:
mode:
authorjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-05 22:40:59 +0000
committerjoth@chromium.org <joth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-05 22:40:59 +0000
commitc660d46fdb0e45faf3ae09750766a8e2ddef08e3 (patch)
treee36227194763737ee42a920716620fdacc5a78e1 /android_webview/lib
parentead6751a4a41f35c3cc4ba72f0519610ba6b2f08 (diff)
downloadchromium_src-c660d46fdb0e45faf3ae09750766a8e2ddef08e3.zip
chromium_src-c660d46fdb0e45faf3ae09750766a8e2ddef08e3.tar.gz
chromium_src-c660d46fdb0e45faf3ae09750766a8e2ddef08e3.tar.bz2
[Android webview] Cleanup some command line flags
Remove obsolete kUseZeroCopyBuffers Remove placeholder testing-webview-gl-mode, replace with dedicated kDisableWebViewGLMode Set the disable webGL flag in follow up to crrev.com/215135 BUG=b/10188126 NOTRY=true Review URL: https://chromiumcodereview.appspot.com/22260002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@215714 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'android_webview/lib')
-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 0e43adde..6344b1f 100644
--- a/android_webview/lib/main/aw_main_delegate.cc
+++ b/android_webview/lib/main/aw_main_delegate.cc
@@ -59,6 +59,9 @@ bool AwMainDelegate::BasicStartupComplete(int* exit_code) {
cl->AppendSwitch(switches::kHideScrollbars);
cl->AppendSwitch(switches::kDisableOverscrollEdgeEffect);
+ // Not yet secure in single-process mode.
+ cl->AppendSwitch(switches::kDisableExperimentalWebGL);
+
return false;
}