diff options
author | amanda@chromium.org <amanda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-13 21:33:09 +0000 |
---|---|---|
committer | amanda@chromium.org <amanda@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-07-13 21:33:09 +0000 |
commit | f6b1d3e64758a188d579cb4d0bb8fa011687ea21 (patch) | |
tree | abdea2aac057598d52be177b11b11fe039e3436b /chrome/common/chrome_switches.cc | |
parent | d3c902b2f2d157a0e40cfe4f684c3e95fc27fc80 (diff) | |
download | chromium_src-f6b1d3e64758a188d579cb4d0bb8fa011687ea21.zip chromium_src-f6b1d3e64758a188d579cb4d0bb8fa011687ea21.tar.gz chromium_src-f6b1d3e64758a188d579cb4d0bb8fa011687ea21.tar.bz2 |
Add a temporary flag to enable plugins on the Mac and Linux while
leaving the default to "disabled" until they work better.
Temporary, for use by people who like living on the bleeding edge.
BUG=none
TEST=none
jam: review
evan,jon: FYI
Review URL: http://codereview.chromium.org/149570
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20540 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index c38e0b1..0462705 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -359,6 +359,10 @@ const wchar_t kDisableJava[] = L"disable-java"; // Prevent plugins from running. const wchar_t kDisablePlugins[] = L"disable-plugins"; +// Force plugins to run (for ports in progress where they are turned off by +// default). +const wchar_t kEnablePlugins[] = L"enable-plugins"; + // Prevent images from loading. const wchar_t kDisableImages[] = L"disable-images"; |