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/browser/content_setting_bubble_model.cc | |
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/browser/content_setting_bubble_model.cc')
-rw-r--r-- | chrome/browser/content_setting_bubble_model.cc | 4 |
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(); } |