diff options
author | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 20:07:38 +0000 |
---|---|---|
committer | avi@chromium.org <avi@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-17 20:07:38 +0000 |
commit | edc64de774e1af065b16996295053f0b92d22cb0 (patch) | |
tree | 9370bffca9da7615718c67448bcb5631016a8ad1 /content/plugin/plugin_channel.h | |
parent | c193faf261d5542429d6363a9f5f295ee7c1d70f (diff) | |
download | chromium_src-edc64de774e1af065b16996295053f0b92d22cb0.zip chromium_src-edc64de774e1af065b16996295053f0b92d22cb0.tar.gz chromium_src-edc64de774e1af065b16996295053f0b92d22cb0.tar.bz2 |
Add OVERRIDE to content/.
BUG=104314
TEST=no change
Review URL: http://codereview.chromium.org/8587009
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110544 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/plugin/plugin_channel.h')
-rw-r--r-- | content/plugin/plugin_channel.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/content/plugin/plugin_channel.h b/content/plugin/plugin_channel.h index c8665d9..27acc4c 100644 --- a/content/plugin/plugin_channel.h +++ b/content/plugin/plugin_channel.h @@ -33,18 +33,18 @@ class PluginChannel : public NPChannelBase { virtual ~PluginChannel(); - virtual bool Send(IPC::Message* msg); - virtual bool OnMessageReceived(const IPC::Message& message); + virtual bool Send(IPC::Message* msg) OVERRIDE; + virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; base::ProcessHandle renderer_handle() const { return renderer_handle_; } int renderer_id() { return renderer_id_; } - virtual int GenerateRouteID(); + 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( - gfx::NativeViewId containing_window); + gfx::NativeViewId containing_window) OVERRIDE; bool in_send() { return in_send_ != 0; } @@ -62,12 +62,12 @@ class PluginChannel : public NPChannelBase { virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; virtual void OnChannelError() OVERRIDE; - virtual void CleanUp(); + virtual void CleanUp() OVERRIDE; // Overrides NPChannelBase::Init. virtual bool Init(base::MessageLoopProxy* ipc_message_loop, bool create_pipe_now, - base::WaitableEvent* shutdown_event); + base::WaitableEvent* shutdown_event) OVERRIDE; private: class MessageFilter; @@ -75,7 +75,7 @@ class PluginChannel : public NPChannelBase { // Called on the plugin thread PluginChannel(); - virtual bool OnControlMessageReceived(const IPC::Message& msg); + virtual bool OnControlMessageReceived(const IPC::Message& msg) OVERRIDE; static NPChannelBase* ClassFactory() { return new PluginChannel(); } |