From da1bd1855df84f4b851752dfc2ffe56f6e12e925 Mon Sep 17 00:00:00 2001 From: "evan@chromium.org" Date: Tue, 16 Aug 2011 21:09:25 +0000 Subject: 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 --- chrome_frame/cfproxy_private.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'chrome_frame') diff --git a/chrome_frame/cfproxy_private.h b/chrome_frame/cfproxy_private.h index 19ade4e..61778e1d 100644 --- a/chrome_frame/cfproxy_private.h +++ b/chrome_frame/cfproxy_private.h @@ -155,10 +155,10 @@ class CFProxy : public Interface2IPCMessage, virtual void Tab_RunUnloadHandlers(int tab); ////////////////////////////////////////////////////////////////////////// - // IPC::Channel::Listener - virtual bool OnMessageReceived(const IPC::Message& message); - virtual void OnChannelConnected(int32 peer_pid); - virtual void OnChannelError(); + // IPC::Channel::Listener implementation. + virtual bool OnMessageReceived(const IPC::Message& message) OVERRIDE; + virtual void OnChannelConnected(int32 peer_pid) OVERRIDE; + virtual void OnChannelError() OVERRIDE; bool CalledOnIpcThread() const { return base::PlatformThread::CurrentId() == ipc_thread_.thread_id(); -- cgit v1.1