Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(489)

Unified Diff: mojo/public/cpp/application/interface_factory_impl.h

Issue 617503003: Mojo: MOJO_OVERRIDE -> override in mojo/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebased Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « mojo/public/cpp/application/application_impl.h ('k') | mojo/public/cpp/application/lib/application_impl.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « mojo/public/cpp/application/application_impl.h ('k') | mojo/public/cpp/application/lib/application_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698