| 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;
|
| }
|
|
|