| Index: chrome/renderer/chrome_render_process_observer.h
|
| diff --git a/chrome/renderer/chrome_render_process_observer.h b/chrome/renderer/chrome_render_process_observer.h
|
| index e3ba711e9166124aaf92c60724e9149dcba60649..74ab74069f7a4381d860199bb476c4db78d2a78f 100644
|
| --- a/chrome/renderer/chrome_render_process_observer.h
|
| +++ b/chrome/renderer/chrome_render_process_observer.h
|
| @@ -45,9 +45,9 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver {
|
| // |ChromeRenderProcessObserver|.
|
| const ContentSettings* default_content_settings() const;
|
|
|
| - // Returns a pointer to the image setting rules owned by
|
| + // Returns a pointer to the content setting rules owned by
|
| // |ChromeRenderProcessObserver|.
|
| - const ContentSettingsForOneType* image_setting_rules() const;
|
| + const RendererContentSettingRules* content_setting_rules() const;
|
|
|
| private:
|
| // RenderProcessObserver implementation.
|
| @@ -58,7 +58,7 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver {
|
| void OnSetContentSettingsForCurrentURL(
|
| const GURL& url, const ContentSettings& content_settings);
|
| void OnSetDefaultContentSettings(const ContentSettings& content_settings);
|
| - void OnSetImageSettingRules(const ContentSettingsForOneType& settings);
|
| + void OnSetContentSettingRules(const RendererContentSettingRules& rules);
|
| void OnSetCacheCapacities(size_t min_dead_capacity,
|
| size_t max_dead_capacity,
|
| size_t capacity);
|
| @@ -80,7 +80,7 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver {
|
| // If true, the web cache shall be cleared before the next navigation event.
|
| bool clear_cache_pending_;
|
| ContentSettings default_content_settings_;
|
| - ContentSettingsForOneType image_setting_rules_;
|
| + RendererContentSettingRules content_setting_rules_;
|
|
|
| DISALLOW_COPY_AND_ASSIGN(ChromeRenderProcessObserver);
|
| };
|
|
|