| Index: ppapi/proxy/plugin_message_filter.h
|
| ===================================================================
|
| --- ppapi/proxy/plugin_message_filter.h (revision 278168)
|
| +++ ppapi/proxy/plugin_message_filter.h (working copy)
|
| @@ -41,7 +41,7 @@
|
| virtual ~PluginMessageFilter();
|
|
|
| // MessageFilter implementation.
|
| - virtual void OnFilterAdded(IPC::Sender* sender) OVERRIDE;
|
| + virtual void OnFilterAdded(IPC::Channel* channel) OVERRIDE;
|
| virtual void OnFilterRemoved() OVERRIDE;
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
|
|
| @@ -72,9 +72,9 @@
|
|
|
| scoped_refptr<ResourceReplyThreadRegistrar> resource_reply_thread_registrar_;
|
|
|
| - // The IPC sender to the renderer. May be NULL if we're not currently
|
| + // The IPC channel to the renderer. May be NULL if we're not currently
|
| // attached as a filter.
|
| - IPC::Sender* sender_;
|
| + IPC::Channel* channel_;
|
| };
|
|
|
| } // namespace proxy
|
|
|