diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 22:35:31 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-06-20 22:35:31 +0000 |
commit | c47317e98d6623ea0e40a2fcf60e13b9bcb03d4e (patch) | |
tree | 0b5b672655adda0cea63afa6c1b19e65157db433 /content/renderer/plugin_channel_host.h | |
parent | 124f78b393c367c5f86b5d90cfee37f4dd1bfa8e (diff) | |
download | chromium_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 'content/renderer/plugin_channel_host.h')
-rw-r--r-- | content/renderer/plugin_channel_host.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/renderer/plugin_channel_host.h b/content/renderer/plugin_channel_host.h index 92001b9..e92b9c6 100644 --- a/content/renderer/plugin_channel_host.h +++ b/content/renderer/plugin_channel_host.h @@ -32,14 +32,14 @@ class PluginChannelHost : public NPChannelBase { virtual int GenerateRouteID() OVERRIDE; - void AddRoute(int route_id, IPC::Channel::Listener* listener, + void AddRoute(int route_id, IPC::Listener* listener, NPObjectBase* npobject); void RemoveRoute(int route_id); // NPChannelBase override: virtual bool Send(IPC::Message* msg) OVERRIDE; - // IPC::Channel::Listener override + // IPC::Listener override virtual void OnChannelError() OVERRIDE; static void SetListening(bool flag); @@ -65,7 +65,7 @@ class PluginChannelHost : public NPChannelBase { // Keep track of all the registered WebPluginDelegeProxies to // inform about OnChannelError - typedef base::hash_map<int, IPC::Channel::Listener*> ProxyMap; + typedef base::hash_map<int, IPC::Listener*> ProxyMap; ProxyMap proxies_; // An IPC MessageFilter that can be told to filter out all messages. This is |