| Index: content/plugin/plugin_channel.h
|
| diff --git a/content/plugin/plugin_channel.h b/content/plugin/plugin_channel.h
|
| index 7be4d91165ecec51a97c164e2b91594c028c3f70..ed9e215d4a27db5232a9bdd77cb3628d80af4104 100644
|
| --- a/content/plugin/plugin_channel.h
|
| +++ b/content/plugin/plugin_channel.h
|
| @@ -31,10 +31,10 @@ class PluginChannel : public NPChannelBase {
|
| // Send a message to all renderers that the process is going to shutdown.
|
| static void NotifyRenderersOfPendingShutdown();
|
|
|
| - virtual ~PluginChannel();
|
| -
|
| + // IPC::Channel::Listener:
|
| virtual bool Send(IPC::Message* msg) OVERRIDE;
|
| virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| + virtual void OnChannelError() OVERRIDE;
|
|
|
| int renderer_id() { return renderer_id_; }
|
|
|
| @@ -57,12 +57,10 @@ class PluginChannel : public NPChannelBase {
|
| #endif
|
|
|
| protected:
|
| - // IPC::Channel::Listener implementation:
|
| - virtual void OnChannelError() OVERRIDE;
|
| + virtual ~PluginChannel();
|
|
|
| + // NPChannelBase::
|
| virtual void CleanUp() OVERRIDE;
|
| -
|
| - // Overrides NPChannelBase::Init.
|
| virtual bool Init(base::MessageLoopProxy* ipc_message_loop,
|
| bool create_pipe_now,
|
| base::WaitableEvent* shutdown_event) OVERRIDE;
|
|
|