| Index: mojo/services/test_service/test_service_impl.h
|
| diff --git a/mojo/services/test_service/test_service_impl.h b/mojo/services/test_service/test_service_impl.h
|
| index c921599c30d43808e566cdb24df268a75cbb81c8..379f02e050770da4b543c263237d3b1e38cc2e1b 100644
|
| --- a/mojo/services/test_service/test_service_impl.h
|
| +++ b/mojo/services/test_service/test_service_impl.h
|
| @@ -23,14 +23,14 @@ class TestServiceImpl : public InterfaceImpl<TestService> {
|
| virtual ~TestServiceImpl();
|
|
|
| // |TestService| methods:
|
| - virtual void OnConnectionEstablished() MOJO_OVERRIDE;
|
| - virtual void OnConnectionError() MOJO_OVERRIDE;
|
| - virtual void Ping(const mojo::Callback<void()>& callback) MOJO_OVERRIDE;
|
| + virtual void OnConnectionEstablished() override;
|
| + virtual void OnConnectionError() override;
|
| + virtual void Ping(const mojo::Callback<void()>& callback) override;
|
| virtual void ConnectToAppAndGetTime(
|
| const mojo::String& app_url,
|
| - const mojo::Callback<void(int64_t)>& callback) MOJO_OVERRIDE;
|
| - virtual void StartTrackingRequests(const mojo::Callback<void()>& callback)
|
| - MOJO_OVERRIDE;
|
| + const mojo::Callback<void(int64_t)>& callback) override;
|
| + virtual void StartTrackingRequests(
|
| + const mojo::Callback<void()>& callback) override;
|
|
|
| private:
|
| TestServiceApplication* const application_;
|
|
|