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

Unified Diff: chrome/browser/tab_contents/render_view_host_delegate_helper.cc

Issue 149570: Add a temporary flag to enable plugins on the Mac and Linux while... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 5 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 | chrome/common/chrome_switches.h » ('j') | webkit/glue/plugins/plugin_list_mac.mm » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/tab_contents/render_view_host_delegate_helper.cc
===================================================================
--- chrome/browser/tab_contents/render_view_host_delegate_helper.cc (revision 20520)
+++ chrome/browser/tab_contents/render_view_host_delegate_helper.cc (working copy)
@@ -155,9 +155,15 @@
web_prefs.web_security_enabled =
!command_line.HasSwitch(switches::kDisableWebSecurity) &&
prefs->GetBoolean(prefs::kWebKitWebSecurityEnabled);
+#if defined(OS_WIN)
web_prefs.plugins_enabled =
!command_line.HasSwitch(switches::kDisablePlugins) &&
prefs->GetBoolean(prefs::kWebKitPluginsEnabled);
+#else
+ web_prefs.plugins_enabled =
+ command_line.HasSwitch(switches::kEnablePlugins) &&
+ prefs->GetBoolean(prefs::kWebKitPluginsEnabled);
Evan Martin 2009/07/13 21:39:07 what is this pref?
+#endif
web_prefs.java_enabled =
!command_line.HasSwitch(switches::kDisableJava) &&
prefs->GetBoolean(prefs::kWebKitJavaEnabled);
« no previous file with comments | « no previous file | chrome/common/chrome_switches.h » ('j') | webkit/glue/plugins/plugin_list_mac.mm » ('J')

Powered by Google App Engine
This is Rietveld 408576698