summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/proxy_channel.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-20 22:35:31 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-06-20 22:35:31 +0000
commitc47317e98d6623ea0e40a2fcf60e13b9bcb03d4e (patch)
tree0b5b672655adda0cea63afa6c1b19e65157db433 /ppapi/proxy/proxy_channel.h
parent124f78b393c367c5f86b5d90cfee37f4dd1bfa8e (diff)
downloadchromium_src-c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e.zip
chromium_src-c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e.tar.gz
chromium_src-c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e.tar.bz2
Rename IPC Sender and Listener in ppapi, content/public, and content/renderer
This is the new name in preparation for deleting the backwards-compatible typedef. BUG= TEST= Review URL: https://chromiumcodereview.appspot.com/10532162 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@143282 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/proxy/proxy_channel.h')
-rw-r--r--ppapi/proxy/proxy_channel.h15
1 files changed, 8 insertions, 7 deletions
diff --git a/ppapi/proxy/proxy_channel.h b/ppapi/proxy/proxy_channel.h
index ffd3f2f..bb08f79 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 {