| Index: chrome/browser/content_settings/host_content_settings_map.cc
|
| ===================================================================
|
| --- chrome/browser/content_settings/host_content_settings_map.cc (revision 239860)
|
| +++ chrome/browser/content_settings/host_content_settings_map.cc (working copy)
|
| @@ -309,7 +309,6 @@
|
| const GURL& primary_url,
|
| const GURL& secondary_url,
|
| ContentSettingsType content_type,
|
| - const std::string& resource_identifier,
|
| ContentSetting setting) {
|
| // TODO(markusheintz): Until the UI supports pattern pairs, both urls must
|
| // match.
|
| @@ -321,13 +320,13 @@
|
| SetContentSetting(ContentSettingsPattern::FromURLNoWildcard(primary_url),
|
| ContentSettingsPattern::Wildcard(),
|
| content_type,
|
| - resource_identifier,
|
| + std::string(),
|
| CONTENT_SETTING_DEFAULT);
|
|
|
| SetContentSetting(ContentSettingsPattern::FromURL(primary_url),
|
| ContentSettingsPattern::Wildcard(),
|
| content_type,
|
| - resource_identifier,
|
| + std::string(),
|
| setting);
|
| }
|
|
|
|
|