summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_proxy.h
diff options
context:
space:
mode:
authormostynb <mostynb@opera.com>2014-10-07 00:17:16 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-07 07:17:32 +0000
commit50a41f330c528275c2980d59dbe9d99d8aec2b49 (patch)
tree9fc16ccb13091088d318fa57c4a5c28e5dd05945 /ipc/ipc_channel_proxy.h
parentc2ea7251fcf2113162201e24b4f65f8f36ef94d6 (diff)
downloadchromium_src-50a41f330c528275c2980d59dbe9d99d8aec2b49.zip
chromium_src-50a41f330c528275c2980d59dbe9d99d8aec2b49.tar.gz
chromium_src-50a41f330c528275c2980d59dbe9d99d8aec2b49.tar.bz2
replace OVERRIDE and FINAL with override and final in ipc/
BUG=417463 Review URL: https://codereview.chromium.org/633563002 Cr-Commit-Position: refs/heads/master@{#298413}
Diffstat (limited to 'ipc/ipc_channel_proxy.h')
-rw-r--r--ipc/ipc_channel_proxy.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/ipc/ipc_channel_proxy.h b/ipc/ipc_channel_proxy.h
index 4731e18..00d5f42 100644
--- a/ipc/ipc_channel_proxy.h
+++ b/ipc/ipc_channel_proxy.h
@@ -98,7 +98,7 @@ class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe {
// Send a message asynchronously. The message is routed to the background
// thread where it is passed to the IPC::Channel's Send method.
- virtual bool Send(Message* message) OVERRIDE;
+ virtual bool Send(Message* message) override;
// Used to intercept messages as they are received on the background thread.
//
@@ -155,9 +155,9 @@ class IPC_EXPORT ChannelProxy : public Sender, public base::NonThreadSafe {
virtual ~Context();
// IPC::Listener methods:
- virtual bool OnMessageReceived(const Message& message) OVERRIDE;
- virtual void OnChannelConnected(int32 peer_pid) OVERRIDE;
- virtual void OnChannelError() OVERRIDE;
+ virtual bool OnMessageReceived(const Message& message) override;
+ virtual void OnChannelConnected(int32 peer_pid) override;
+ virtual void OnChannelError() override;
// Like OnMessageReceived but doesn't try the filters.
bool OnMessageReceivedNoFilter(const Message& message);