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

Unified Diff: content/common/child_process_host_impl.h

Issue 10662005: Use IPC::Sender and IPC::Listener in content. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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
« no previous file with comments | « content/common/appcache/appcache_dispatcher.h ('k') | content/common/child_thread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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;
« no previous file with comments | « content/common/appcache/appcache_dispatcher.h ('k') | content/common/child_thread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698