summaryrefslogtreecommitdiffstats
path: root/content/plugin
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-16 21:09:25 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-16 21:09:25 +0000
commitda1bd1855df84f4b851752dfc2ffe56f6e12e925 (patch)
tree4953bea3627412728228ce0b36a16cb19c2102d7 /content/plugin
parenta099f3aeb1fa6c33d0b3f679fbd4e6bc616d85dc (diff)
downloadchromium_src-da1bd1855df84f4b851752dfc2ffe56f6e12e925.zip
chromium_src-da1bd1855df84f4b851752dfc2ffe56f6e12e925.tar.gz
chromium_src-da1bd1855df84f4b851752dfc2ffe56f6e12e925.tar.bz2
Tag IPC::Channel::Listener implementations with OVERRIDE
Review URL: http://codereview.chromium.org/7661031 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@97021 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/plugin')
-rw-r--r--content/plugin/plugin_channel.h4
-rw-r--r--content/plugin/plugin_channel_base.h6
2 files changed, 5 insertions, 5 deletions
diff --git a/content/plugin/plugin_channel.h b/content/plugin/plugin_channel.h
index b0edd9d..4439920 100644
--- a/content/plugin/plugin_channel.h
+++ b/content/plugin/plugin_channel.h
@@ -56,8 +56,8 @@ class PluginChannel : public PluginChannelBase {
protected:
// IPC::Channel::Listener implementation:
- virtual void OnChannelConnected(int32 peer_pid);
- virtual void OnChannelError();
+ virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
+ virtual void OnChannelError() OVERRIDE;
virtual void CleanUp();
diff --git a/content/plugin/plugin_channel_base.h b/content/plugin/plugin_channel_base.h
index 6621409..f7f5693 100644
--- a/content/plugin/plugin_channel_base.h
+++ b/content/plugin/plugin_channel_base.h
@@ -128,9 +128,9 @@ class PluginChannelBase : public IPC::Channel::Listener,
virtual bool OnControlMessageReceived(const IPC::Message& msg);
// IPC::Channel::Listener implementation:
- virtual bool OnMessageReceived(const IPC::Message& msg);
- virtual void OnChannelConnected(int32 peer_pid);
- virtual void OnChannelError();
+ virtual bool OnMessageReceived(const IPC::Message& msg) OVERRIDE;
+ virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
+ virtual void OnChannelError() OVERRIDE;
void set_send_unblocking_only_during_unblock_dispatch() {
send_unblocking_only_during_unblock_dispatch_ = true;