| Index: chrome/browser/content_settings/tab_specific_content_settings.h
|
| diff --git a/chrome/browser/content_settings/tab_specific_content_settings.h b/chrome/browser/content_settings/tab_specific_content_settings.h
|
| index fee681f859bae3c7f4dcded9a130ddaa97b7d346..a13fe7ef11b44e1d65691697b38554698f993f29 100644
|
| --- a/chrome/browser/content_settings/tab_specific_content_settings.h
|
| +++ b/chrome/browser/content_settings/tab_specific_content_settings.h
|
| @@ -229,6 +229,10 @@ class TabSpecificContentSettings
|
| load_plugins_link_enabled_ = enabled;
|
| }
|
|
|
| + // Called to indicate whether access to the Pepper broker was allowed or
|
| + // blocked.
|
| + void SetPepperBrokerAllowed(bool allowed);
|
| +
|
| // content::WebContentsObserver overrides.
|
| virtual void RenderViewForInterstitialPageCreated(
|
| content::RenderViewHost* render_view_host) OVERRIDE;
|
| @@ -250,6 +254,7 @@ class TabSpecificContentSettings
|
| // Message handlers. Public for testing.
|
| void OnContentBlocked(ContentSettingsType type,
|
| const std::string& resource_identifier);
|
| + void OnContentAccessed(ContentSettingsType type);
|
|
|
| // These methods are invoked on the UI thread by the static functions above.
|
| // Public for testing.
|
| @@ -294,8 +299,6 @@ class TabSpecificContentSettings
|
| void AddBlockedResource(ContentSettingsType content_type,
|
| const std::string& resource_identifier);
|
|
|
| - void OnContentAccessed(ContentSettingsType type);
|
| -
|
| // content::NotificationObserver implementation.
|
| virtual void Observe(int type,
|
| const content::NotificationSource& source,
|
|
|