| Index: chrome/browser/content_setting_bubble_model.cc
|
| ===================================================================
|
| --- chrome/browser/content_setting_bubble_model.cc (revision 59533)
|
| +++ chrome/browser/content_setting_bubble_model.cc (working copy)
|
| @@ -88,9 +88,7 @@
|
| tab_contents()->GetTabSpecificContentSettings()->IsContentAccessed(
|
| content_type()) &&
|
| !tab_contents()->GetTabSpecificContentSettings()->IsContentBlocked(
|
| - content_type()) &&
|
| - !CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableCookiePrompt)) {
|
| + content_type())) {
|
| title_ids = kAccessedTitleIDs;
|
| } else if (!bubble_content().resource_identifiers.empty()) {
|
| title_ids = kResourceSpecificBlockedTitleIDs;
|
| @@ -127,9 +125,7 @@
|
| Profile* profile,
|
| ContentSettingsType content_type)
|
| : ContentSettingTitleAndLinkModel(tab_contents, profile, content_type) {
|
| - if (!CommandLine::ForCurrentProcess()->HasSwitch(
|
| - switches::kEnableCookiePrompt))
|
| - SetInfoLink();
|
| + SetInfoLink();
|
| }
|
|
|
| private:
|
|
|