summaryrefslogtreecommitdiffstats
path: root/chrome/browser/content_setting_bubble_model.cc
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-31 18:44:40 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-07-31 18:44:40 +0000
commit7ae6e5bd74544359b1bab0f1ee4e306d8a599108 (patch)
treeb1a603898cd40e197777ea1f458793bd9542401d /chrome/browser/content_setting_bubble_model.cc
parent0f32daacb5f39a54d93e33c209b0c408501d0194 (diff)
downloadchromium_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/browser/content_setting_bubble_model.cc')
-rw-r--r--chrome/browser/content_setting_bubble_model.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/content_setting_bubble_model.cc b/chrome/browser/content_setting_bubble_model.cc
index 5c9c7e3..88bb04d 100644
--- a/chrome/browser/content_setting_bubble_model.cc
+++ b/chrome/browser/content_setting_bubble_model.cc
@@ -75,8 +75,8 @@ class ContentSettingTitleLinkAndInfoModel
Profile* profile,
ContentSettingsType content_type)
: ContentSettingTitleAndLinkModel(tab_contents, profile, content_type) {
- if (CommandLine::ForCurrentProcess()->HasSwitch(
- switches::kDisableCookiePrompt))
+ if (!CommandLine::ForCurrentProcess()->HasSwitch(
+ switches::kEnableCookiePrompt))
SetInfoLink();
}