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

Unified Diff: mojo/dbus/dbus_external_service.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/apps/js/application_delegate_impl.h ('k') | mojo/examples/apptest/example_apptest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « mojo/apps/js/application_delegate_impl.h ('k') | mojo/examples/apptest/example_apptest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698