Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1624)

Unified Diff: chrome/browser/renderer_host/render_message_filter.h

Issue 5785004: Store HostContentSettingsMap separately so we can access it from the IO thread. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: compile fix Created 10 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/render_message_filter.h
diff --git a/chrome/browser/renderer_host/render_message_filter.h b/chrome/browser/renderer_host/render_message_filter.h
index e912aaa06cec387e7489624edf8d5a778ca44a95..d783afd05f3fc4e063e59513d21825eba3ef2bef 100644
--- a/chrome/browser/renderer_host/render_message_filter.h
+++ b/chrome/browser/renderer_host/render_message_filter.h
@@ -34,6 +34,7 @@
class ChromeURLRequestContext;
struct FontDescriptor;
+class HostContentSettingsMap;
class HostZoomMap;
class NotificationsPrefsCache;
class PpapiPluginProcessHost;
@@ -413,6 +414,10 @@ class RenderMessageFilter : public IPC::ChannelProxy::MessageFilter,
// accessed on the UI thread!
Profile* profile_;
+ // The host content settings map. Stored separately from the profile so we can
+ // access it on other threads.
+ HostContentSettingsMap* content_settings_;
+
// Helper class for handling PluginProcessHost_ResolveProxy messages (manages
// the requests to the proxy service).
ResolveProxyMsgHelper resolve_proxy_msg_helper_;
« no previous file with comments | « no previous file | chrome/browser/renderer_host/render_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698