| Index: content/renderer/plugin_channel_host.h
|
| diff --git a/content/renderer/plugin_channel_host.h b/content/renderer/plugin_channel_host.h
|
| index 92001b9aa21d9c428ebcbf869e813b0e2fd03b74..e92b9c6c0b2da5b54921240cbc6348f17d8d10ed 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
|
|
|