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

Unified Diff: content/browser/renderer_host/render_process_host_impl.h

Issue 324143002: Decouple IPC::MessageFilter from IPC::Channel (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing compilation errors Created 6 years, 6 months 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
Index: content/browser/renderer_host/render_process_host_impl.h
diff --git a/content/browser/renderer_host/render_process_host_impl.h b/content/browser/renderer_host/render_process_host_impl.h
index cd7ec890fdd2e2490ac686918a6a51b0e3727693..cbd2d666d1e33c9331671e9aba8bf178552628b1 100644
--- a/content/browser/renderer_host/render_process_host_impl.h
+++ b/content/browser/renderer_host/render_process_host_impl.h
@@ -43,6 +43,7 @@ struct GpuMemoryBufferHandle;
namespace content {
class AudioRendererHost;
class BrowserDemuxerAndroid;
+class BrowserMessageFilterPeer;
class GpuMessageFilter;
class MessagePortMessageFilter;
class MojoApplicationHost;
@@ -361,6 +362,9 @@ class CONTENT_EXPORT RenderProcessHostImpl
// IO thread.
scoped_refptr<RenderWidgetHelper> widget_helper_;
+ // Passed to added browser filters
+ scoped_ptr<BrowserMessageFilterPeer> filter_peer_;
+
// The filter for GPU-related messages coming from the renderer.
// Thread safety note: this field is to be accessed from the UI thread.
// We don't keep a reference to it, to avoid it being destroyed on the UI

Powered by Google App Engine
This is Rietveld 408576698