| Index: components/content_settings/core/browser/host_content_settings_map.h
|
| diff --git a/components/content_settings/core/browser/host_content_settings_map.h b/components/content_settings/core/browser/host_content_settings_map.h
|
| index 04a204d7af9b74cf58f69f5a3fec6a357cb5ae26..5b32e8cdc422820f2a4250a5642d1a1297337d8f 100644
|
| --- a/components/content_settings/core/browser/host_content_settings_map.h
|
| +++ b/components/content_settings/core/browser/host_content_settings_map.h
|
| @@ -176,9 +176,9 @@ class HostContentSettingsMap : public content_settings::Observer,
|
| // This should only be called on the UI thread.
|
| void ClearSettingsForOneType(ContentSettingsType content_type);
|
|
|
| - static bool IsValueAllowedForType(PrefService* prefs,
|
| - const base::Value* value,
|
| + static bool IsValueAllowedForType(const base::Value* value,
|
| ContentSettingsType content_type);
|
| + // TODO(raymes): Remove |prefs| from the below functions, it's unused.
|
| static bool IsSettingAllowedForType(PrefService* prefs,
|
| ContentSetting setting,
|
| ContentSettingsType content_type);
|
| @@ -186,9 +186,6 @@ class HostContentSettingsMap : public content_settings::Observer,
|
| ContentSetting setting,
|
| ContentSettingsType content_type);
|
|
|
| - // Returns true if the values for content type are of type dictionary/map.
|
| - static bool ContentTypeHasCompoundValue(ContentSettingsType type);
|
| -
|
| // RefcountedKeyedService implementation.
|
| void ShutdownOnUIThread() override;
|
|
|
|
|