| Index: components/content_settings/core/browser/host_content_settings_map.cc
|
| diff --git a/components/content_settings/core/browser/host_content_settings_map.cc b/components/content_settings/core/browser/host_content_settings_map.cc
|
| index d1151eab85af2a51fa622b979cda1d05674ff2a3..290d7ee301079a4ddb759d737c72e39e9898bc6f 100644
|
| --- a/components/content_settings/core/browser/host_content_settings_map.cc
|
| +++ b/components/content_settings/core/browser/host_content_settings_map.cc
|
| @@ -411,11 +411,11 @@ void HostContentSettingsMap::SetNarrowestContentSetting(
|
| narrow_secondary = info.secondary_pattern;
|
| }
|
|
|
| - SetContentSetting(narrow_primary, narrow_secondary, type, std::string(),
|
| - setting);
|
| + SetContentSettingCustomScope(narrow_primary, narrow_secondary, type,
|
| + std::string(), setting);
|
| }
|
|
|
| -void HostContentSettingsMap::SetContentSetting(
|
| +void HostContentSettingsMap::SetContentSettingCustomScope(
|
| const ContentSettingsPattern& primary_pattern,
|
| const ContentSettingsPattern& secondary_pattern,
|
| ContentSettingsType content_type,
|
| @@ -461,8 +461,8 @@ void HostContentSettingsMap::SetContentSettingDefaultScope(
|
| if (!primary_pattern.IsValid() || !secondary_pattern.IsValid())
|
| return;
|
|
|
| - SetContentSetting(primary_pattern, secondary_pattern, content_type,
|
| - resource_identifier, setting);
|
| + SetContentSettingCustomScope(primary_pattern, secondary_pattern, content_type,
|
| + resource_identifier, setting);
|
| }
|
|
|
| ContentSetting HostContentSettingsMap::GetContentSettingAndMaybeUpdateLastUsage(
|
|
|