| Index: chrome/browser/content_settings/content_settings_policy_provider.h
|
| diff --git a/chrome/browser/content_settings/content_settings_policy_provider.h b/chrome/browser/content_settings/content_settings_policy_provider.h
|
| index b9f07c90c28772a2beb790ddc69c40f734cb6b28..e59c91b0d9ad438cacff710311930eefe845f80d 100644
|
| --- a/chrome/browser/content_settings/content_settings_policy_provider.h
|
| +++ b/chrome/browser/content_settings/content_settings_policy_provider.h
|
| @@ -27,26 +27,23 @@ namespace content_settings {
|
| class PolicyProvider : public ObservableProvider {
|
| public:
|
| explicit PolicyProvider(PrefService* prefs);
|
| - virtual ~PolicyProvider();
|
| + ~PolicyProvider() override;
|
| static void RegisterProfilePrefs(user_prefs::PrefRegistrySyncable* registry);
|
|
|
| // ProviderInterface implementations.
|
| - virtual RuleIterator* GetRuleIterator(
|
| - ContentSettingsType content_type,
|
| - const ResourceIdentifier& resource_identifier,
|
| - bool incognito) const override;
|
| -
|
| - virtual bool SetWebsiteSetting(
|
| - const ContentSettingsPattern& primary_pattern,
|
| - const ContentSettingsPattern& secondary_pattern,
|
| - ContentSettingsType content_type,
|
| - const ResourceIdentifier& resource_identifier,
|
| - base::Value* value) override;
|
| -
|
| - virtual void ClearAllContentSettingsRules(
|
| - ContentSettingsType content_type) override;
|
| -
|
| - virtual void ShutdownOnUIThread() override;
|
| + RuleIterator* GetRuleIterator(ContentSettingsType content_type,
|
| + const ResourceIdentifier& resource_identifier,
|
| + bool incognito) const override;
|
| +
|
| + bool SetWebsiteSetting(const ContentSettingsPattern& primary_pattern,
|
| + const ContentSettingsPattern& secondary_pattern,
|
| + ContentSettingsType content_type,
|
| + const ResourceIdentifier& resource_identifier,
|
| + base::Value* value) override;
|
| +
|
| + void ClearAllContentSettingsRules(ContentSettingsType content_type) override;
|
| +
|
| + void ShutdownOnUIThread() override;
|
|
|
| private:
|
| // Reads the policy managed default settings.
|
|
|