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 a0a68c28c88a2f956e02c76ca8ece6c73d7cf31e..00732dc883ce21bc75adc089169476ab4d1831ba 100644 |
--- a/chrome/renderer/chrome_render_process_observer.h |
+++ b/chrome/renderer/chrome_render_process_observer.h |
@@ -37,10 +37,6 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver { |
// any 'clear cache' commands that were delayed until the next navigation. |
void ExecutePendingClearCache(); |
- // Returns a pointer to the content setting rules owned by |
- // |ChromeRenderProcessObserver|. |
- const RendererContentSettingRules* content_setting_rules() const; |
- |
private: |
// RenderProcessObserver implementation. |
virtual bool OnControlMessageReceived(const IPC::Message& message) OVERRIDE; |
@@ -50,7 +46,6 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver { |
void OnSetIsIncognitoProcess(bool is_incognito_process); |
void OnSetContentSettingsForCurrentURL( |
const GURL& url, const ContentSettings& content_settings); |
- void OnSetContentSettingRules(const RendererContentSettingRules& rules); |
void OnSetCacheCapacities(size_t min_dead_capacity, |
size_t max_dead_capacity, |
size_t capacity); |
@@ -69,7 +64,6 @@ class ChromeRenderProcessObserver : public content::RenderProcessObserver { |
ChromeContentRendererClient* client_; |
// If true, the web cache shall be cleared before the next navigation event. |
bool clear_cache_pending_; |
- RendererContentSettingRules content_setting_rules_; |
bool webkit_initialized_; |
size_t pending_cache_min_dead_capacity_; |