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

Unified Diff: content/public/common/child_process_host.h

Issue 245443005: Move IPC::MessageFilter and router to a separate file (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: pre-review cleanups 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
Index: content/public/common/child_process_host.h
diff --git a/content/public/common/child_process_host.h b/content/public/common/child_process_host.h
index 6ad0c291e37027a09b81ac65512d5eaf5e670773..c8abedebd8b15a7e95b7b1e98c8be159984ad41e 100644
--- a/content/public/common/child_process_host.h
+++ b/content/public/common/child_process_host.h
@@ -13,6 +13,10 @@ namespace base {
class FilePath;
}
+namespace IPC {
+class MessageFilter;
+}
+
namespace content {
class ChildProcessHostDelegate;
@@ -90,7 +94,7 @@ class CONTENT_EXPORT ChildProcessHost : public IPC::Sender {
virtual bool IsChannelOpening() = 0;
// Adds an IPC message filter. A reference will be kept to the filter.
- virtual void AddFilter(IPC::ChannelProxy::MessageFilter* filter) = 0;
+ virtual void AddFilter(IPC::MessageFilter* filter) = 0;
#if defined(OS_POSIX)
// See IPC::Channel::TakeClientFileDescriptor.

Powered by Google App Engine
This is Rietveld 408576698