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

Unified Diff: ppapi/proxy/proxy_channel.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
Index: ppapi/proxy/proxy_channel.h
diff --git a/ppapi/proxy/proxy_channel.h b/ppapi/proxy/proxy_channel.h
index ffd3f2f381ca369b1abdfb42c2fc9616645c45ff..bb08f79c7f642c5ef9ac5cea80d9f6d8a3c9a653 100644
--- a/ppapi/proxy/proxy_channel.h
+++ b/ppapi/proxy/proxy_channel.h
@@ -7,8 +7,9 @@
#include "base/memory/scoped_ptr.h"
#include "base/process.h"
-#include "ipc/ipc_message.h"
+#include "ipc/ipc_listener.h"
#include "ipc/ipc_platform_file.h"
+#include "ipc/ipc_sender.h"
#include "ipc/ipc_sync_channel.h"
#include "ppapi/proxy/ppapi_proxy_export.h"
@@ -25,8 +26,8 @@ namespace ppapi {
namespace proxy {
class PPAPI_PROXY_EXPORT ProxyChannel
- : public IPC::Channel::Listener,
- public IPC::Message::Sender {
+ : public IPC::Listener,
+ public IPC::Sender {
public:
class PPAPI_PROXY_EXPORT Delegate {
public:
@@ -67,11 +68,11 @@ class PPAPI_PROXY_EXPORT ProxyChannel
base::PlatformFile handle,
bool should_close_source);
- // IPC::Message::Sender implementation.
- virtual bool Send(IPC::Message* msg);
+ // IPC::Sender implementation.
+ virtual bool Send(IPC::Message* msg) OVERRIDE;
- // IPC::Channel::Listener implementation.
- virtual void OnChannelError();
+ // IPC::Listener implementation.
+ virtual void OnChannelError() OVERRIDE;
// Will be NULL in some unit tests and if the remote side has crashed.
IPC::SyncChannel* channel() const {
« content/renderer/render_thread_impl.h ('K') | « ppapi/proxy/plugin_proxy_delegate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698