diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-31 18:44:40 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-31 18:44:40 +0000 |
commit | 7ae6e5bd74544359b1bab0f1ee4e306d8a599108 (patch) | |
tree | b1a603898cd40e197777ea1f458793bd9542401d /chrome/common | |
parent | 0f32daacb5f39a54d93e33c209b0c408501d0194 (diff) | |
download | chromium_src-7ae6e5bd74544359b1bab0f1ee4e306d8a599108.zip chromium_src-7ae6e5bd74544359b1bab0f1ee4e306d8a599108.tar.gz chromium_src-7ae6e5bd74544359b1bab0f1ee4e306d8a599108.tar.bz2 |
Flip the default for the cookie prompt to disabled.
BUG=50083
TEST=none
Review URL: http://codereview.chromium.org/3030033
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54461 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/chrome_switches.cc | 6 | ||||
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index faf6480..e6aa0ca 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -123,9 +123,6 @@ const char kDisableBackingStoreLimit[] = "disable-backing-store-limit"; // Disable support for cached byte-ranges. const char kDisableByteRangeSupport[] = "disable-byte-range-support"; -// Disables the cookie prompt. -const char kDisableCookiePrompt[] = "disable-cookie-prompt"; - // Disables the custom JumpList on Windows 7. const char kDisableCustomJumpList[] = "disable-custom-jumplist"; @@ -307,6 +304,9 @@ const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; // Enables the Cloud Print dialog hosting code. const char kEnableCloudPrint[] = "enable-cloud-print"; +// Enables the cookie prompt. +const char kEnableCookiePrompt[ ] = "enable-cookie-prompt"; + // Enables device orientation events. const char kEnableDeviceOrientation[] = "enable-device-orientation"; diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index 8f0f38e..573e6bb 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -49,7 +49,6 @@ extern const char kDisableAudio[]; extern const char kDisableAuthNegotiateCnameLookup[]; extern const char kDisableBackingStoreLimit[]; extern const char kDisableByteRangeSupport[]; -extern const char kDisableCookiePrompt[]; extern const char kDisableCustomJumpList[]; extern const char kDisableDatabases[]; extern const char kDisableDesktopNotifications[]; @@ -102,6 +101,7 @@ extern const char kEnableChromoting[]; extern const char kEnableClickToPlay[]; extern const char kEnableCloudPrintProxy[]; extern const char kEnableCloudPrint[]; +extern const char kEnableCookiePrompt[]; extern const char kEnableDeviceOrientation[]; extern const char kEnableExperimentalExtensionApis[]; extern const char kEnableExperimentalWebGL[]; |