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
diff --git a/ppapi/proxy/proxy_channel.h b/ppapi/proxy/proxy_channel.h
index ffd3f2f..bb08f79c7 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 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 @@
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 {