summaryrefslogtreecommitdiffstats
path: root/chrome/common/chrome_switches.h
diff options
context:
space:
mode:
authorjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-21 03:23:40 +0000
committerjorlow@chromium.org <jorlow@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-21 03:23:40 +0000
commit97467c9a3a1968b059db6020aad2a3fdeba33e57 (patch)
treea86b4577cbf6c3061ebec5f1f28599ec8e9bbf1e /chrome/common/chrome_switches.h
parentfa7e11dea2d3510e2d4bd65a9696a5261f9b3464 (diff)
downloadchromium_src-97467c9a3a1968b059db6020aad2a3fdeba33e57.zip
chromium_src-97467c9a3a1968b059db6020aad2a3fdeba33e57.tar.gz
chromium_src-97467c9a3a1968b059db6020aad2a3fdeba33e57.tar.bz2
Enable DOM_STORAGE in our build. Put LocalStorage and SessionStorage behind their own flags. Add the beginnings of StorageNamespaceProxy since it implements WebCore::StorageNamespace::____StorageNamespace and we'd get link errors otherwise.--enable-local-storage and --enable-session-storage are the new flags. If you enable them and try to use DOM Storage, Chromium will crash.Originally Committed in http://src.chromium.org/viewvc/chrome?view=rev&revision=21059 but then backed out due to include path issues.BUG=4360TEST=none
Review URL: http://codereview.chromium.org/159059 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@21157 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.h')
-rw-r--r--chrome/common/chrome_switches.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index 135b148..3af9fb2 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -211,6 +211,10 @@ extern const wchar_t kEnableTabtastic2[];
extern const wchar_t kPinnedTabCount[];
+extern const wchar_t kEnableLocalStorage[];
+
+extern const wchar_t kEnableSessionStorage[];
+
} // namespace switches
#endif // CHROME_COMMON_CHROME_SWITCHES_H_