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/browser/tab_contents | |
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/browser/tab_contents')
-rw-r--r-- | chrome/browser/tab_contents/render_view_host_delegate_helper.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/tab_contents/render_view_host_delegate_helper.cc b/chrome/browser/tab_contents/render_view_host_delegate_helper.cc index d6545a8..3827a45 100644 --- a/chrome/browser/tab_contents/render_view_host_delegate_helper.cc +++ b/chrome/browser/tab_contents/render_view_host_delegate_helper.cc @@ -180,7 +180,7 @@ WebPreferences RenderViewHostDelegateHelper::GetWebkitPrefs( command_line.HasSwitch(switches::kEnableApplicationCache); web_prefs.local_storage_enabled = - command_line.HasSwitch(switches::kEnableLocalStorage); + !command_line.HasSwitch(switches::kDisableLocalStorage); web_prefs.databases_enabled = command_line.HasSwitch(switches::kEnableDatabases); web_prefs.experimental_webgl_enabled = |