summaryrefslogtreecommitdiffstats
path: root/chrome/common
diff options
context:
space:
mode:
authoratwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-14 01:11:56 +0000
committeratwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-14 01:11:56 +0000
commit3d871546f6c7585aa687500ae92fd410dbf32adc (patch)
treefb64831eb1a9fb7e62860c302c935b8e8256ee48 /chrome/common
parent8304534695af7ed56d9b82b9855188341c152763 (diff)
downloadchromium_src-3d871546f6c7585aa687500ae92fd410dbf32adc.zip
chromium_src-3d871546f6c7585aa687500ae92fd410dbf32adc.tar.gz
chromium_src-3d871546f6c7585aa687500ae92fd410dbf32adc.tar.bz2
Turn on shared workers by default
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@31982 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r--chrome/common/chrome_switches.cc6
-rw-r--r--chrome/common/chrome_switches.h2
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc
index 839ef92..97729c7 100644
--- a/chrome/common/chrome_switches.cc
+++ b/chrome/common/chrome_switches.cc
@@ -120,6 +120,9 @@ const char kDisablePopupBlocking[] = "disable-popup-blocking";
// disable that check. This switch is used during automated testing.
const char kDisablePromptOnRepost[] = "disable-prompt-on-repost";
+// Enable shared workers. Functionality not yet complete.
+const char kDisableSharedWorkers[] = "disable-shared-workers";
+
// Disable syncing bookmarks to a Google Account.
const char kDisableSync[] = "disable-sync";
@@ -220,9 +223,6 @@ const char kEnableSeccompSandbox[] = "enable-seccomp-sandbox";
// Enable session storage. Still buggy.
const char kEnableSessionStorage[] = "enable-session-storage";
-// Enable shared workers. Functionality not yet complete.
-const char kEnableSharedWorkers[] = "enable-shared-workers";
-
// Enables StatsTable, logging statistics to a global named shared memory table.
const char kEnableStatsTable[] = "enable-stats-table";
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h
index b276a09..001132f 100644
--- a/chrome/common/chrome_switches.h
+++ b/chrome/common/chrome_switches.h
@@ -49,6 +49,7 @@ extern const char kDisableNewTabFirstRun[];
extern const char kDisablePlugins[];
extern const char kDisablePopupBlocking[];
extern const char kDisablePromptOnRepost[];
+extern const char kDisableSharedWorkers[];
extern const char kDisableSync[];
extern const char kDisableWebResources[];
extern const char kDisableWebSecurity[];
@@ -78,7 +79,6 @@ extern const char kEnableRemoteFonts[];
extern const char kEnableRendererAccessibility[];
extern const char kEnableSeccompSandbox[];
extern const char kEnableSessionStorage[];
-extern const char kEnableSharedWorkers[];
extern const char kEnableStatsTable[];
extern const char kEnableSync[];
extern const char kEnableTabtastic2[];