| Index: mojo/services/test_service/test_service_application.h
|
| diff --git a/mojo/services/test_service/test_service_application.h b/mojo/services/test_service/test_service_application.h
|
| index 06d24746b57ab9e77e82a0686f3260ec00481759..47743a18bf5edf05ee15301cb8bbb68bc689ce3b 100644
|
| --- a/mojo/services/test_service/test_service_application.h
|
| +++ b/mojo/services/test_service/test_service_application.h
|
| @@ -24,16 +24,16 @@ class TestServiceApplication : public ApplicationDelegate,
|
| virtual ~TestServiceApplication();
|
|
|
| // ApplicationDelegate implementation.
|
| - virtual bool ConfigureIncomingConnection(ApplicationConnection* connection)
|
| - MOJO_OVERRIDE;
|
| + virtual bool ConfigureIncomingConnection(
|
| + ApplicationConnection* connection) override;
|
|
|
| // InterfaceFactory<TestService> implementation.
|
| virtual void Create(ApplicationConnection* connection,
|
| - InterfaceRequest<TestService> request) MOJO_OVERRIDE;
|
| + InterfaceRequest<TestService> request) override;
|
|
|
| // InterfaceFactory<TestTimeService> implementation.
|
| virtual void Create(ApplicationConnection* connection,
|
| - InterfaceRequest<TestTimeService> request) MOJO_OVERRIDE;
|
| + InterfaceRequest<TestTimeService> request) override;
|
|
|
| void AddRef();
|
| void ReleaseRef();
|
|
|