| Index: mojo/public/cpp/application/interface_factory_impl.h
|
| diff --git a/mojo/public/cpp/application/interface_factory_impl.h b/mojo/public/cpp/application/interface_factory_impl.h
|
| index 2d020f8767b17da0aafe1a16d5fc03786bcba29b..72d32547ecd68d395284ba01fccef64105216345 100644
|
| --- a/mojo/public/cpp/application/interface_factory_impl.h
|
| +++ b/mojo/public/cpp/application/interface_factory_impl.h
|
| @@ -18,7 +18,7 @@ class InterfaceFactoryImpl : public InterfaceFactory<Interface> {
|
| virtual ~InterfaceFactoryImpl() {}
|
|
|
| virtual void Create(ApplicationConnection* connection,
|
| - InterfaceRequest<Interface> request) MOJO_OVERRIDE {
|
| + InterfaceRequest<Interface> request) override {
|
| BindToRequest(new Impl(), &request);
|
| }
|
| };
|
| @@ -36,7 +36,7 @@ class InterfaceFactoryImplWithContext : public InterfaceFactory<Interface> {
|
| virtual ~InterfaceFactoryImplWithContext() {}
|
|
|
| virtual void Create(ApplicationConnection* connection,
|
| - InterfaceRequest<Interface> request) MOJO_OVERRIDE {
|
| + InterfaceRequest<Interface> request) override {
|
| BindToRequest(new Impl(context_), &request);
|
| }
|
|
|
|
|