diff options
author | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-06 18:45:01 +0000 |
---|---|---|
committer | jorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-11-06 18:45:01 +0000 |
commit | 5cf1836317c0780da460220853b099bbd5088deb (patch) | |
tree | f1414ece6a62e23b021af5141840960aefd77082 /chrome/common | |
parent | e3d4ae1388e46587b701709519906317cc3d00d2 (diff) | |
download | chromium_src-5cf1836317c0780da460220853b099bbd5088deb.zip chromium_src-5cf1836317c0780da460220853b099bbd5088deb.tar.gz chromium_src-5cf1836317c0780da460220853b099bbd5088deb.tar.bz2 |
Turn LocalStorage on by default.
TEST=none
BUG=4360
Review URL: http://codereview.chromium.org/366032
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31256 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 4 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 31e93fd..ef26499 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -188,8 +188,8 @@ const char kEnableFastback[] = "enable-fastback"; // testing, for example page cycler and layout tests. See bug 1157243. const char kEnableFileCookies[] = "enable-file-cookies"; -// Enable local storage. Still buggy. -const char kEnableLocalStorage[] = "enable-local-storage"; +// Disable LocalStorage. +const char kDisableLocalStorage[] = "disable-local-storage"; // Force logging to be enabled. Logging is disabled by default in release // builds. diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index bde8c92..4174564 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -69,7 +69,7 @@ extern const char kEnableExperimentalWebGL[]; extern const char kEnableExtensionTimelineApi[]; extern const char kEnableFastback[]; extern const char kEnableFileCookies[]; -extern const char kEnableLocalStorage[]; +extern const char kDisableLocalStorage[]; extern const char kEnableLogging[]; extern const char kEnableMonitorProfile[]; extern const char kEnableNativeWebWorkers[]; |