| Index: mojo/shell/child_process_host_unittest.cc
|
| diff --git a/mojo/shell/child_process_host_unittest.cc b/mojo/shell/child_process_host_unittest.cc
|
| index f92a4bb7b2adb2138379dd2ee8a0cdffe07fe807..52230189ab574235d7556651b50f4bf6ddb359fe 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();
|
| }
|
|
|