Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1962)

Unified Diff: content/renderer/plugin_channel_host.h

Issue 10532162: Rename IPC Sender and Listener in ppapi, content/public, and content/renderer (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698