summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_channel_nacl.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_nacl.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_nacl.h')
-rw-r--r--ipc/ipc_channel_nacl.h18
1 files changed, 9 insertions, 9 deletions
diff --git a/ipc/ipc_channel_nacl.h b/ipc/ipc_channel_nacl.h
index f7da4c3..9c1e80f 100644
--- a/ipc/ipc_channel_nacl.h
+++ b/ipc/ipc_channel_nacl.h
@@ -41,11 +41,11 @@ class ChannelNacl : public Channel,
virtual ~ChannelNacl();
// Channel implementation.
- virtual base::ProcessId GetPeerPID() const OVERRIDE;
- virtual base::ProcessId GetSelfPID() const OVERRIDE;
- virtual bool Connect() OVERRIDE;
- virtual void Close() OVERRIDE;
- virtual bool Send(Message* message) OVERRIDE;
+ virtual base::ProcessId GetPeerPID() const override;
+ virtual base::ProcessId GetSelfPID() const override;
+ virtual bool Connect() override;
+ virtual void Close() override;
+ virtual bool Send(Message* message) override;
// Posted to the main thread by ReaderThreadRunner.
void DidRecvMsg(scoped_ptr<MessageContents> contents);
@@ -61,10 +61,10 @@ class ChannelNacl : public Channel,
// ChannelReader implementation.
virtual ReadState ReadData(char* buffer,
int buffer_len,
- int* bytes_read) OVERRIDE;
- virtual bool WillDispatchInputMessage(Message* msg) OVERRIDE;
- virtual bool DidEmptyInputBuffers() OVERRIDE;
- virtual void HandleInternalMessage(const Message& msg) OVERRIDE;
+ int* bytes_read) override;
+ virtual bool WillDispatchInputMessage(Message* msg) override;
+ virtual bool DidEmptyInputBuffers() override;
+ virtual void HandleInternalMessage(const Message& msg) override;
Mode mode_;
bool waiting_connect_;