| Index: content/plugin/plugin_channel.h
|
| diff --git a/content/plugin/plugin_channel.h b/content/plugin/plugin_channel.h
|
| index ffe5c79cc9b2cac5d4452665993213427e33eab9..ec79dd02ebabbac5a558f83abb1bf609dc8ac699 100644
|
| --- a/content/plugin/plugin_channel.h
|
| +++ b/content/plugin/plugin_channel.h
|
| @@ -33,17 +33,17 @@ class PluginChannel : public NPChannelBase {
|
| static void NotifyRenderersOfPendingShutdown();
|
|
|
| // IPC::Listener:
|
| - virtual bool Send(IPC::Message* msg) OVERRIDE;
|
| - virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE;
|
| - virtual void OnChannelError() OVERRIDE;
|
| + 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_; }
|
|
|
| - virtual int GenerateRouteID() OVERRIDE;
|
| + virtual int GenerateRouteID() override;
|
|
|
| // Returns the event that's set when a call to the renderer causes a modal
|
| // dialog to come up.
|
| - virtual base::WaitableEvent* GetModalDialogEvent(int render_view_id) OVERRIDE;
|
| + virtual base::WaitableEvent* GetModalDialogEvent(int render_view_id) override;
|
|
|
| bool in_send() { return in_send_ != 0; }
|
|
|
| @@ -60,10 +60,10 @@ class PluginChannel : public NPChannelBase {
|
| virtual ~PluginChannel();
|
|
|
| // NPChannelBase::
|
| - virtual void CleanUp() OVERRIDE;
|
| + virtual void CleanUp() override;
|
| virtual bool Init(base::MessageLoopProxy* ipc_message_loop,
|
| bool create_pipe_now,
|
| - base::WaitableEvent* shutdown_event) OVERRIDE;
|
| + base::WaitableEvent* shutdown_event) override;
|
|
|
| private:
|
| class MessageFilter;
|
| @@ -71,7 +71,7 @@ class PluginChannel : public NPChannelBase {
|
| // Called on the plugin thread
|
| PluginChannel();
|
|
|
| - virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE;
|
| + virtual bool OnControlMessageReceived(const IPC::Message& msg) override;
|
|
|
| static NPChannelBase* ClassFactory() { return new PluginChannel(); }
|
|
|
|
|