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

Unified Diff: mojo/examples/echo/echo_service.cc

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/examples/echo/echo_client.cc ('k') | mojo/examples/embedded_app/embedded_app.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/examples/echo/echo_service.cc
diff --git a/mojo/examples/echo/echo_service.cc b/mojo/examples/echo/echo_service.cc
index bfabfc69bd142e5be0a9c9e2dcc73e993b335210..5df36adb16817517ccd675c914aad15d3e969ab6 100644
--- a/mojo/examples/echo/echo_service.cc
+++ b/mojo/examples/echo/echo_service.cc
@@ -14,17 +14,16 @@ namespace examples {
class EchoServiceImpl : public InterfaceImpl<EchoService> {
public:
- virtual void EchoString(
- const String& value,
- const Callback<void(String)>& callback) MOJO_OVERRIDE {
+ virtual void EchoString(const String& value,
+ const Callback<void(String)>& callback) override {
callback.Run(value);
}
};
class EchoServiceDelegate : public ApplicationDelegate {
public:
- virtual bool ConfigureIncomingConnection(ApplicationConnection* connection)
- MOJO_OVERRIDE {
+ virtual bool ConfigureIncomingConnection(
+ ApplicationConnection* connection) override {
connection->AddService(&echo_service_factory_);
return true;
}
« no previous file with comments | « mojo/examples/echo/echo_client.cc ('k') | mojo/examples/embedded_app/embedded_app.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698