| Index: chrome/browser/content_settings/host_content_settings_map.h
|
| diff --git a/chrome/browser/content_settings/host_content_settings_map.h b/chrome/browser/content_settings/host_content_settings_map.h
|
| index 42c02440f6177bd066b6e87d7ea782a69fa48b6c..b23c5f0a8f29011aab8b74d292fcc938e3ee91ff 100644
|
| --- a/chrome/browser/content_settings/host_content_settings_map.h
|
| +++ b/chrome/browser/content_settings/host_content_settings_map.h
|
| @@ -150,12 +150,6 @@ class HostContentSettingsMap
|
| // This should only be called on the UI thread.
|
| void SetBlockThirdPartyCookies(bool block);
|
|
|
| - bool GetBlockNonsandboxedPlugins() const {
|
| - return block_nonsandboxed_plugins_;
|
| - }
|
| -
|
| - void SetBlockNonsandboxedPlugins(bool block);
|
| -
|
| // Resets all settings levels.
|
| //
|
| // This should only be called on the UI thread.
|
| @@ -175,12 +169,6 @@ class HostContentSettingsMap
|
|
|
| ~HostContentSettingsMap();
|
|
|
| - // Informs observers that content settings have changed. Make sure that
|
| - // |lock_| is not held when calling this, as listeners will usually call one
|
| - // of the GetSettings functions in response, which would then lead to a
|
| - // mutex deadlock.
|
| - void NotifyObservers(const ContentSettingsDetails& details);
|
| -
|
| void UnregisterObservers();
|
|
|
| // Various migration methods (old cookie, popup and per-host data gets
|
| @@ -214,7 +202,6 @@ class HostContentSettingsMap
|
| // Misc global settings.
|
| bool block_third_party_cookies_;
|
| bool is_block_third_party_cookies_managed_;
|
| - bool block_nonsandboxed_plugins_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(HostContentSettingsMap);
|
| };
|
|
|