Index: content/common/child_process_host_impl.h |
diff --git a/content/common/child_process_host_impl.h b/content/common/child_process_host_impl.h |
index 3168c6c7d15bf49ac40fbb35874e7c7d82849b22..378be0a52c0ae7f71fb48ee2c7ad33053e8de88b 100644 |
--- a/content/common/child_process_host_impl.h |
+++ b/content/common/child_process_host_impl.h |
@@ -16,6 +16,7 @@ |
#include "base/memory/singleton.h" |
#include "base/shared_memory.h" |
#include "base/string16.h" |
+#include "ipc/ipc_listener.h" |
#include "content/public/common/child_process_host.h" |
class FilePath; |
@@ -27,7 +28,7 @@ class ChildProcessHostDelegate; |
// messages between the host and the child process. Users are responsible |
// for the actual launching and terminating of the child processes. |
class CONTENT_EXPORT ChildProcessHostImpl : public ChildProcessHost, |
- public IPC::Channel::Listener { |
+ public IPC::Listener { |
public: |
virtual ~ChildProcessHostImpl(); |
@@ -60,7 +61,7 @@ class CONTENT_EXPORT ChildProcessHostImpl : public ChildProcessHost, |
explicit ChildProcessHostImpl(ChildProcessHostDelegate* delegate); |
- // IPC::Channel::Listener methods: |
+ // IPC::Listener methods: |
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE; |
virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; |
virtual void OnChannelError() OVERRIDE; |