diff options
author | mostynb <mostynb@opera.com> | 2014-10-07 00:17:16 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-10-07 07:17:32 +0000 |
commit | 50a41f330c528275c2980d59dbe9d99d8aec2b49 (patch) | |
tree | 9fc16ccb13091088d318fa57c4a5c28e5dd05945 /ipc/mojo/ipc_mojo_perftest.cc | |
parent | c2ea7251fcf2113162201e24b4f65f8f36ef94d6 (diff) | |
download | chromium_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/mojo/ipc_mojo_perftest.cc')
-rw-r--r-- | ipc/mojo/ipc_mojo_perftest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/ipc/mojo/ipc_mojo_perftest.cc b/ipc/mojo/ipc_mojo_perftest.cc index 20893d4..dca405e 100644 --- a/ipc/mojo/ipc_mojo_perftest.cc +++ b/ipc/mojo/ipc_mojo_perftest.cc @@ -31,13 +31,13 @@ public: virtual scoped_ptr<IPC::ChannelFactory> CreateChannelFactory( const IPC::ChannelHandle& handle, - base::TaskRunner* runner) OVERRIDE { + base::TaskRunner* runner) override { host_.reset(new IPC::ChannelMojoHost(task_runner())); return IPC::ChannelMojo::CreateServerFactory(host_->channel_delegate(), handle); } - virtual bool DidStartClient() OVERRIDE { + virtual bool DidStartClient() override { bool ok = IPCTestBase::DidStartClient(); DCHECK(ok); host_->OnClientLaunched(client_process()); @@ -74,7 +74,7 @@ class MojoTestClient : public IPC::test::PingPongTestClient { MojoTestClient(); virtual scoped_ptr<IPC::Channel> CreateChannel( - IPC::Listener* listener) OVERRIDE; + IPC::Listener* listener) override; }; MojoTestClient::MojoTestClient() { |