diff options
author | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-29 01:29:23 +0000 |
---|---|---|
committer | aa@chromium.org <aa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-29 01:29:23 +0000 |
commit | 6d60703bcc863062952c5907cddc649cd130c20b (patch) | |
tree | a912d631356b4f7ca742fdd73b37bcdcc3ad3a9d /chrome/common/chrome_switches.cc | |
parent | dcaed2acafe415af02b4e4c654a5e752c0cdbc04 (diff) | |
download | chromium_src-6d60703bcc863062952c5907cddc649cd130c20b.zip chromium_src-6d60703bcc863062952c5907cddc649cd130c20b.tar.gz chromium_src-6d60703bcc863062952c5907cddc649cd130c20b.tar.bz2 |
Enable extensions by default.
BUG=20573
TEST=Install sample extensions without modifying command line flags. They should install (and run on next startup).
Review URL: http://codereview.chromium.org/179032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@24846 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, 2 insertions, 2 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 27d563d..56ce4fd 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -395,8 +395,8 @@ const wchar_t kSdchFilter[] = L"enable-sdch"; // Enable user script support. const wchar_t kEnableUserScripts[] = L"enable-user-scripts"; -// Enable extensions. -const wchar_t kEnableExtensions[] = L"enable-extensions"; +// Disable extensions. +const wchar_t kDisableExtensions[] = L"disable-extensions"; // Frequency in seconds for Extensions auto-update. const wchar_t kExtensionsUpdateFrequency[] = L"extensions-update-frequency"; |