| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "mojo/examples/echo/echo_service.mojom.h" | 5 #include "mojo/examples/echo/echo_service.mojom.h" |
| 6 #include "mojo/public/cpp/application/application_connection.h" | 6 #include "mojo/public/cpp/application/application_connection.h" |
| 7 #include "mojo/public/cpp/application/application_delegate.h" | 7 #include "mojo/public/cpp/application/application_delegate.h" |
| 8 #include "mojo/public/cpp/application/application_export.h" |
| 9 #include "mojo/public/cpp/application/application_runner.h" |
| 8 #include "mojo/public/cpp/application/interface_factory_impl.h" | 10 #include "mojo/public/cpp/application/interface_factory_impl.h" |
| 9 | 11 |
| 10 namespace mojo { | 12 namespace mojo { |
| 11 namespace examples { | 13 namespace examples { |
| 12 | 14 |
| 13 class EchoServiceImpl : public InterfaceImpl<EchoService> { | 15 class EchoServiceImpl : public InterfaceImpl<EchoService> { |
| 14 public: | 16 public: |
| 15 virtual void EchoString( | 17 virtual void EchoString( |
| 16 const String& value, | 18 const String& value, |
| 17 const Callback<void(String)>& callback) MOJO_OVERRIDE { | 19 const Callback<void(String)>& callback) MOJO_OVERRIDE { |
| 18 callback.Run(value); | 20 callback.Run(value); |
| 19 } | 21 } |
| 20 }; | 22 }; |
| 21 | 23 |
| 22 class EchoServiceDelegate : public ApplicationDelegate { | 24 class EchoServiceDelegate : public ApplicationDelegate { |
| 23 public: | 25 public: |
| 24 virtual bool ConfigureIncomingConnection(ApplicationConnection* connection) | 26 virtual bool ConfigureIncomingConnection(ApplicationConnection* connection) |
| 25 MOJO_OVERRIDE { | 27 MOJO_OVERRIDE { |
| 26 connection->AddService(&echo_service_factory_); | 28 connection->AddService(&echo_service_factory_); |
| 27 return true; | 29 return true; |
| 28 } | 30 } |
| 29 | 31 |
| 30 private: | 32 private: |
| 31 InterfaceFactoryImpl<EchoServiceImpl> echo_service_factory_; | 33 InterfaceFactoryImpl<EchoServiceImpl> echo_service_factory_; |
| 32 }; | 34 }; |
| 33 | 35 |
| 34 } // namespace examples | 36 } // namespace examples |
| 37 } // namespace mojo |
| 35 | 38 |
| 36 // static | 39 extern "C" APPLICATION_EXPORT MojoResult CDECL MojoMain( |
| 37 ApplicationDelegate* ApplicationDelegate::Create() { | 40 MojoHandle shell_handle) { |
| 38 return new examples::EchoServiceDelegate(); | 41 return mojo::ApplicationRunner( |
| 42 new mojo::examples::EchoServiceDelegate).Run(shell_handle); |
| 39 } | 43 } |
| 40 | |
| 41 } // namespace mojo | |
| OLD | NEW |