| 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 "examples/indirect_service/indirect_service_demo.mojom.h" | 5 #include "examples/indirect_service/indirect_service_demo.mojom.h" |
| 6 #include "mojo/public/c/system/main.h" | 6 #include "mojo/public/c/system/main.h" |
| 7 #include "mojo/public/cpp/application/application_connection.h" | 7 #include "mojo/public/cpp/application/application_connection.h" |
| 8 #include "mojo/public/cpp/application/application_delegate.h" | 8 #include "mojo/public/cpp/application/application_delegate.h" |
| 9 #include "mojo/public/cpp/application/application_runner.h" | 9 #include "mojo/public/cpp/application/application_runner.h" |
| 10 #include "mojo/public/cpp/bindings/strong_binding.h" | 10 #include "mojo/public/cpp/bindings/strong_binding.h" |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 | 24 |
| 25 private: | 25 private: |
| 26 int32_t value_; | 26 int32_t value_; |
| 27 StrongBinding<IntegerService> binding_; | 27 StrongBinding<IntegerService> binding_; |
| 28 }; | 28 }; |
| 29 | 29 |
| 30 class IntegerServiceAppDelegate : public ApplicationDelegate, | 30 class IntegerServiceAppDelegate : public ApplicationDelegate, |
| 31 public InterfaceFactory<IntegerService> { | 31 public InterfaceFactory<IntegerService> { |
| 32 public: | 32 public: |
| 33 bool ConfigureIncomingConnection( | 33 bool ConfigureIncomingConnection( |
| 34 ApplicationConnection* connection) override { | 34 ApplicationConnection* connection, |
| 35 const std::string& url) override { |
| 35 connection->AddService(this); | 36 connection->AddService(this); |
| 36 return true; | 37 return true; |
| 37 } | 38 } |
| 38 | 39 |
| 39 private: | 40 private: |
| 40 // InterfaceFactory<IntegerService> | 41 // InterfaceFactory<IntegerService> |
| 41 void Create(ApplicationConnection* app, | 42 void Create(ApplicationConnection* app, |
| 42 InterfaceRequest<IntegerService> request) override { | 43 InterfaceRequest<IntegerService> request) override { |
| 43 new IntegerServiceImpl(request.Pass()); | 44 new IntegerServiceImpl(request.Pass()); |
| 44 } | 45 } |
| 45 }; | 46 }; |
| 46 | 47 |
| 47 } // namespace examples | 48 } // namespace examples |
| 48 } // namespace mojo | 49 } // namespace mojo |
| 49 | 50 |
| 50 MojoResult MojoMain(MojoHandle shell_handle) { | 51 MojoResult MojoMain(MojoHandle shell_handle) { |
| 51 mojo::ApplicationRunner runner(new mojo::examples::IntegerServiceAppDelegate); | 52 mojo::ApplicationRunner runner(new mojo::examples::IntegerServiceAppDelegate); |
| 52 return runner.Run(shell_handle); | 53 return runner.Run(shell_handle); |
| 53 } | 54 } |
| 54 | |
| OLD | NEW |