| Index: mojo/dbus/dbus_external_service.h
|
| diff --git a/mojo/dbus/dbus_external_service.h b/mojo/dbus/dbus_external_service.h
|
| index b9cbb2c5251979096d5ffc6e00cf4ba20e9a2e81..68e2f963cfe4e84eea0b1db6b6d2f557ba159e79 100644
|
| --- a/mojo/dbus/dbus_external_service.h
|
| +++ b/mojo/dbus/dbus_external_service.h
|
| @@ -61,8 +61,8 @@ class DBusExternalService
|
| }
|
| virtual ~DBusExternalService() {}
|
|
|
| - virtual bool ConfigureIncomingConnection(ApplicationConnection* connection)
|
| - MOJO_OVERRIDE {
|
| + virtual bool ConfigureIncomingConnection(
|
| + ApplicationConnection* connection) override {
|
| connection->AddService(this);
|
| return true;
|
| }
|
| @@ -70,7 +70,7 @@ class DBusExternalService
|
| virtual void Create(
|
| ApplicationConnection* connection,
|
| InterfaceRequest<typename ServiceImpl::ImplementedInterface> request)
|
| - MOJO_OVERRIDE {
|
| + override {
|
| BindToRequest(new ServiceImpl, &request);
|
| }
|
|
|
|
|