From 7ae6e5bd74544359b1bab0f1ee4e306d8a599108 Mon Sep 17 00:00:00 2001 From: "jochen@chromium.org" Date: Sat, 31 Jul 2010 18:44:40 +0000 Subject: 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 --- chrome/browser/content_setting_bubble_model.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'chrome/browser/content_setting_bubble_model.cc') 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(); } -- cgit v1.1