summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents
diff options
context:
space:
mode:
authorjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-06 18:45:01 +0000
committerjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-06 18:45:01 +0000
commit5cf1836317c0780da460220853b099bbd5088deb (patch)
treef1414ece6a62e23b021af5141840960aefd77082 /chrome/browser/tab_contents
parente3d4ae1388e46587b701709519906317cc3d00d2 (diff)
downloadchromium_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.cc2
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 =