diff options
Diffstat (limited to 'mojo/shell/child_process_host_unittest.cc')
-rw-r--r-- | mojo/shell/child_process_host_unittest.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mojo/shell/child_process_host_unittest.cc b/mojo/shell/child_process_host_unittest.cc index f92a4bb..5223018 100644 --- a/mojo/shell/child_process_host_unittest.cc +++ b/mojo/shell/child_process_host_unittest.cc @@ -22,10 +22,10 @@ class TestChildProcessHostDelegate : public ChildProcessHost::Delegate { public: TestChildProcessHostDelegate() {} virtual ~TestChildProcessHostDelegate() {} - virtual void WillStart() OVERRIDE { + virtual void WillStart() override { VLOG(2) << "TestChildProcessHostDelegate::WillStart()"; } - virtual void DidStart(bool success) OVERRIDE { + virtual void DidStart(bool success) override { VLOG(2) << "TestChildProcessHostDelegate::DidStart(" << success << ")"; base::MessageLoop::current()->QuitWhenIdle(); } |