summaryrefslogtreecommitdiffstats
path: root/content/common/child_process_host.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/common/child_process_host.h')
-rw-r--r--content/common/child_process_host.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/content/common/child_process_host.h b/content/common/child_process_host.h
index 7e00c43..7fd7082 100644
--- a/content/common/child_process_host.h
+++ b/content/common/child_process_host.h
@@ -80,9 +80,9 @@ class ChildProcessHost : public IPC::Channel::Listener,
virtual void InstanceCreated();
// 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;
bool opening_channel() { return opening_channel_; }
const std::string& channel_id() { return channel_id_; }
@@ -102,9 +102,9 @@ class ChildProcessHost : public IPC::Channel::Listener,
class ListenerHook : public IPC::Channel::Listener {
public:
explicit ListenerHook(ChildProcessHost* host);
- 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;
private:
ChildProcessHost* host_;
};