| Index: chrome/browser/content_settings/content_settings_policy_provider.cc
|
| diff --git a/chrome/browser/content_settings/content_settings_policy_provider.cc b/chrome/browser/content_settings/content_settings_policy_provider.cc
|
| index f1e17c27d928a8094701b6bb075cc2159c6fa15b..3ae2b913bec042a38b065e959bcf8a8314564b73 100644
|
| --- a/chrome/browser/content_settings/content_settings_policy_provider.cc
|
| +++ b/chrome/browser/content_settings/content_settings_policy_provider.cc
|
| @@ -384,12 +384,13 @@ void PolicyProvider::ReadManagedContentSettings(bool overwrite) {
|
|
|
| // Since the PolicyProvider is a read only content settings provider, all
|
| // methodes of the ProviderInterface that set or delete any settings do nothing.
|
| -void PolicyProvider::SetContentSetting(
|
| +bool PolicyProvider::SetWebsiteSetting(
|
| const ContentSettingsPattern& primary_pattern,
|
| const ContentSettingsPattern& secondary_pattern,
|
| ContentSettingsType content_type,
|
| const ResourceIdentifier& resource_identifier,
|
| - ContentSetting content_setting) {
|
| + Value* value) {
|
| + return false;
|
| }
|
|
|
| void PolicyProvider::ClearAllContentSettingsRules(
|
|
|