diff options
author | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 12:01:19 +0000 |
---|---|---|
committer | jochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-30 12:01:19 +0000 |
commit | a405e719937d116393de80046ed520a06364bc2a (patch) | |
tree | 5d639c0389ba59a43af31cee00d5a3b90ae1a1c4 /chrome/common/chrome_switches.cc | |
parent | 5f2faeab17c40d1ee10ad1e94140369213992968 (diff) | |
download | chromium_src-a405e719937d116393de80046ed520a06364bc2a.zip chromium_src-a405e719937d116393de80046ed520a06364bc2a.tar.gz chromium_src-a405e719937d116393de80046ed520a06364bc2a.tar.bz2 |
Command line flag to disable the cookie prompt.
The XIB change re-introduces the cookie tab view item with the "ask" setting
as additinoal tab view item. The controller deletes the one not required
according to the command line flag.
BUG=50083
TEST=none
Review URL: http://codereview.chromium.org/3075013
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@54308 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.cc')
-rw-r--r-- | chrome/common/chrome_switches.cc | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.cc b/chrome/common/chrome_switches.cc index 3aadd0a..6016cda 100644 --- a/chrome/common/chrome_switches.cc +++ b/chrome/common/chrome_switches.cc @@ -123,6 +123,9 @@ 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"; |