summaryrefslogtreecommitdiffstats
path: root/chrome/renderer
diff options
context:
space:
mode:
authorjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-09 21:30:26 +0000
committerjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-09 21:30:26 +0000
commitaf1f9f3ab83cd5184d2b0f71492358aabc3129fc (patch)
treea970eb754bc832a76abffe1f484677249bc3173e /chrome/renderer
parent3c37a26e1fcdeaacb06f9ba2b516398bffd9ae29 (diff)
downloadchromium_src-af1f9f3ab83cd5184d2b0f71492358aabc3129fc.zip
chromium_src-af1f9f3ab83cd5184d2b0f71492358aabc3129fc.tar.gz
chromium_src-af1f9f3ab83cd5184d2b0f71492358aabc3129fc.tar.bz2
Enable IndexedDB by default.
TEST=none BUG=none Review URL: http://codereview.chromium.org/3676001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62092 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r--chrome/renderer/render_thread.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/render_thread.cc b/chrome/renderer/render_thread.cc
index 5b1b6c2..595dc9c 100644
--- a/chrome/renderer/render_thread.cc
+++ b/chrome/renderer/render_thread.cc
@@ -912,7 +912,7 @@ void RenderThread::EnsureWebKitInitialized() {
!command_line.HasSwitch(switches::kDisableSessionStorage));
WebRuntimeFeatures::enableIndexedDatabase(
- command_line.HasSwitch(switches::kEnableIndexedDatabase));
+ !command_line.HasSwitch(switches::kDisableIndexedDatabase));
WebRuntimeFeatures::enableGeolocation(
!command_line.HasSwitch(switches::kDisableGeolocation));