| Index: content/common/child_process_host.h
|
| diff --git a/content/common/child_process_host.h b/content/common/child_process_host.h
|
| index 7e00c4353af6de2dbb45dce31bb7d75e5c15a15d..7fd7082555b8c515e90996cd8b6b7cfe6e031fda 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_;
|
| };
|
|
|