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

Unified Diff: ppapi/proxy/interface_proxy.h

Issue 10532162: Rename IPC Sender and Listener in ppapi, content/public, and content/renderer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
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 | « ppapi/proxy/host_dispatcher.h ('k') | ppapi/proxy/plugin_dispatcher.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/proxy/interface_proxy.h
diff --git a/ppapi/proxy/interface_proxy.h b/ppapi/proxy/interface_proxy.h
index b87a184ab37c15d5371738ffa6c57538908095cb..dcab5473c9cac1b5c0f21084c4641514f30a8100 100644
--- a/ppapi/proxy/interface_proxy.h
+++ b/ppapi/proxy/interface_proxy.h
@@ -6,8 +6,8 @@
#define PPAPI_PROXY_INTERFACE_PROXY_H_
#include "base/basictypes.h"
-#include "ipc/ipc_channel.h"
-#include "ipc/ipc_message.h"
+#include "ipc/ipc_listener.h"
+#include "ipc/ipc_sender.h"
#include "ppapi/c/pp_completion_callback.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_var.h"
@@ -18,8 +18,7 @@ namespace proxy {
class Dispatcher;
-class InterfaceProxy : public IPC::Channel::Listener,
- public IPC::Message::Sender {
+class InterfaceProxy : public IPC::Listener, public IPC::Sender {
public:
// Factory function type for interfaces. Ownership of the returned pointer
// is transferred to the caller.
@@ -47,10 +46,10 @@ class InterfaceProxy : public IPC::Channel::Listener,
Dispatcher* dispatcher() const { return dispatcher_; }
- // IPC::Message::Sender implementation.
+ // IPC::Sender implementation.
virtual bool Send(IPC::Message* msg);
- // Sub-classes must implement IPC::Channel::Listener which contains this:
+ // Sub-classes must implement IPC::Listener which contains this:
//virtual bool OnMessageReceived(const IPC::Message& msg);
protected:
« no previous file with comments | « ppapi/proxy/host_dispatcher.h ('k') | ppapi/proxy/plugin_dispatcher.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698