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

Unified Diff: content/child/child_message_filter.h

Issue 245443005: Move IPC::MessageFilter and router to a separate file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix gn build Created 6 years, 8 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
« no previous file with comments | « content/child/child_histogram_message_filter.cc ('k') | content/child/child_message_filter.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/child_message_filter.h
diff --git a/content/child/child_message_filter.h b/content/child/child_message_filter.h
index 21cccac065a9a81b3f3f7c4e36ca70b6eda6b8a0..0d9c4ffc41cba47db9a267e131915455d3f6ecfa 100644
--- a/content/child/child_message_filter.h
+++ b/content/child/child_message_filter.h
@@ -5,12 +5,17 @@
#ifndef CONTENT_CHILD_CROSS_MESSAGE_FILTER_H_
#define CONTENT_CHILD_CROSS_MESSAGE_FILTER_H_
-#include "ipc/ipc_channel_proxy.h"
+#include "base/memory/ref_counted.h"
+#include "ipc/ipc_sender.h"
namespace base {
class TaskRunner;
}
+namespace IPC {
+class MessageFilter;
+}
+
namespace content {
class ThreadSafeSender;
@@ -52,10 +57,10 @@ class ChildMessageFilter
friend class base::RefCountedThreadSafe<ChildMessageFilter>;
- IPC::ChannelProxy::MessageFilter* GetFilter();
+ IPC::MessageFilter* GetFilter();
- // This implements IPC::ChannelProxy::MessageFilter to hide the actual
- // filter methods from child classes.
+ // This implements IPC::MessageFilter to hide the actual filter methods from
+ // child classes.
Internal* internal_;
scoped_refptr<ThreadSafeSender> thread_safe_sender_;
« no previous file with comments | « content/child/child_histogram_message_filter.cc ('k') | content/child/child_message_filter.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698