summaryrefslogtreecommitdiffstats
path: root/ppapi/proxy/broker_dispatcher.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/broker_dispatcher.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/broker_dispatcher.h')
-rw-r--r--ppapi/proxy/broker_dispatcher.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/ppapi/proxy/broker_dispatcher.h b/ppapi/proxy/broker_dispatcher.h
index 5354632..d483d76 100644
--- a/ppapi/proxy/broker_dispatcher.h
+++ b/ppapi/proxy/broker_dispatcher.h
@@ -24,7 +24,7 @@ class PPAPI_PROXY_EXPORT BrokerDispatcher : public ProxyChannel {
const IPC::ChannelHandle& channel_handle,
bool is_client);
- // IPC::Channel::Listener implementation.
+ // IPC::Listener implementation.
virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
protected:
@@ -46,7 +46,7 @@ class PPAPI_PROXY_EXPORT BrokerHostDispatcher : public BrokerDispatcher {
public:
BrokerHostDispatcher();
- // IPC::Channel::Listener implementation.
+ // IPC::Listener implementation.
virtual void OnChannelError() OVERRIDE;
};
@@ -55,7 +55,7 @@ class PPAPI_PROXY_EXPORT BrokerSideDispatcher : public BrokerDispatcher {
public:
explicit BrokerSideDispatcher(PP_ConnectInstance_Func connect_instance);
- // IPC::Channel::Listener implementation.
+ // IPC::Listener implementation.
virtual void OnChannelError() OVERRIDE;
};