diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-16 21:09:25 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-16 21:09:25 +0000 |
commit | da1bd1855df84f4b851752dfc2ffe56f6e12e925 (patch) | |
tree | 4953bea3627412728228ce0b36a16cb19c2102d7 /content/browser/ppapi_plugin_process_host.h | |
parent | a099f3aeb1fa6c33d0b3f679fbd4e6bc616d85dc (diff) | |
download | chromium_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/browser/ppapi_plugin_process_host.h')
-rw-r--r-- | content/browser/ppapi_plugin_process_host.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/browser/ppapi_plugin_process_host.h b/content/browser/ppapi_plugin_process_host.h index 5fe505f..4405aff7 100644 --- a/content/browser/ppapi_plugin_process_host.h +++ b/content/browser/ppapi_plugin_process_host.h @@ -69,9 +69,9 @@ class PpapiPluginProcessHost virtual bool CanShutdown(); virtual void OnProcessLaunched(); - 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 CancelRequests(); |