diff options
author | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-31 22:08:26 +0000 |
---|---|---|
committer | atwilson@chromium.org <atwilson@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-31 22:08:26 +0000 |
commit | 1a2a571b157327f75acd56bd594ef0863481dc32 (patch) | |
tree | 40376e91cc2011234f20b3db3ef57e8d021dd765 /chrome/common | |
parent | fd85ad650d68309b965dbc9f3d6823cf2754349c (diff) | |
download | chromium_src-1a2a571b157327f75acd56bd594ef0863481dc32.zip chromium_src-1a2a571b157327f75acd56bd594ef0863481dc32.tar.gz chromium_src-1a2a571b157327f75acd56bd594ef0863481dc32.tar.bz2 |
Enable BackgroundMode by default on all non-cros platforms.
BUG=59980
TEST=existing tests suffice
Review URL: http://codereview.chromium.org/6087003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@70344 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 8 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 1 |
2 files changed, 1 insertions, 8 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index df8e12c..2093c69 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -167,8 +167,7 @@ const char kDisableAuthNegotiateCnameLookup[] = "disable-auth-negotiate-cname-lookup"; // Disable background mode (background apps will not keep chrome running in the -// background). This has priority over the kEnableBackgroundMode flag which is -// settable via about:labs. +// background). const char kDisableBackgroundMode[] = "disable-background-mode"; // Disable several subsystems which run network requests in the background. @@ -413,11 +412,6 @@ const char kEnableAeroPeekTabs[] = "enable-aero-peek-tabs"; // for more background. const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; -// Enable background mode (background apps will keep chrome running in the -// background and allow chrome to launch on startup). Has no effect on Windows -// because background mode is enabled there by default. -const char kEnableBackgroundMode[] = "enable-background-mode"; - // Enables the benchmarking extensions. const char kEnableBenchmarking[] = "enable-benchmarking"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 1270ac4..dff6717 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -124,7 +124,6 @@ extern const char kEnableAcceleratedLayers[]; extern const char kEnableAccessibility[]; extern const char kEnableAeroPeekTabs[]; extern const char kEnableAuthNegotiatePort[]; -extern const char kEnableBackgroundMode[]; extern const char kEnableBenchmarking[]; extern const char kEnableBlockContentAnimation[]; extern const char kEnableClientSidePhishingDetection[]; |