| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 "base/macros.h" | 5 #include "base/macros.h" |
| 6 #include "base/run_loop.h" | 6 #include "base/run_loop.h" |
| 7 #include "mojo/public/cpp/bindings/binding_set.h" | 7 #include "mojo/public/cpp/bindings/binding_set.h" |
| 8 #include "services/service_manager/public/c/main.h" | 8 #include "services/service_manager/public/c/main.h" |
| 9 #include "services/service_manager/public/cpp/connector.h" | 9 #include "services/service_manager/public/cpp/connector.h" |
| 10 #include "services/service_manager/public/cpp/interface_factory.h" | 10 #include "services/service_manager/public/cpp/interface_factory.h" |
| 11 #include "services/service_manager/public/cpp/interface_registry.h" | 11 #include "services/service_manager/public/cpp/interface_registry.h" |
| 12 #include "services/service_manager/public/cpp/service.h" | 12 #include "services/service_manager/public/cpp/service.h" |
| 13 #include "services/service_manager/public/cpp/service_runner.h" | 13 #include "services/service_manager/public/cpp/service_runner.h" |
| 14 #include "services/service_manager/tests/shutdown/shutdown_unittest.mojom.h" | 14 #include "services/service_manager/tests/shutdown/shutdown_unittest.mojom.h" |
| 15 | 15 |
| 16 namespace service_manager { | 16 namespace service_manager { |
| 17 | 17 |
| 18 class ShutdownClientApp | 18 class ShutdownClientApp |
| 19 : public Service, | 19 : public Service, |
| 20 public InterfaceFactory<mojom::ShutdownTestClientController>, | 20 public InterfaceFactory<mojom::ShutdownTestClientController>, |
| 21 public mojom::ShutdownTestClientController, | 21 public mojom::ShutdownTestClientController, |
| 22 public mojom::ShutdownTestClient { | 22 public mojom::ShutdownTestClient { |
| 23 public: | 23 public: |
| 24 ShutdownClientApp() {} | 24 ShutdownClientApp() {} |
| 25 ~ShutdownClientApp() override {} | 25 ~ShutdownClientApp() override {} |
| 26 | 26 |
| 27 private: | 27 private: |
| 28 // service_manager::Service: | 28 // service_manager::Service: |
| 29 bool OnConnect(const Identity& remote_identity, | 29 bool OnConnect(const ServiceInfo& remote_info, |
| 30 InterfaceRegistry* registry) override { | 30 InterfaceRegistry* registry) override { |
| 31 registry->AddInterface<mojom::ShutdownTestClientController>(this); | 31 registry->AddInterface<mojom::ShutdownTestClientController>(this); |
| 32 return true; | 32 return true; |
| 33 } | 33 } |
| 34 | 34 |
| 35 // InterfaceFactory<mojom::ShutdownTestClientController>: | 35 // InterfaceFactory<mojom::ShutdownTestClientController>: |
| 36 void Create(const Identity& remote_identity, | 36 void Create(const Identity& remote_identity, |
| 37 mojom::ShutdownTestClientControllerRequest request) override { | 37 mojom::ShutdownTestClientControllerRequest request) override { |
| 38 bindings_.AddBinding(this, std::move(request)); | 38 bindings_.AddBinding(this, std::move(request)); |
| 39 } | 39 } |
| (...skipping 23 matching lines...) Expand all Loading... |
| 63 | 63 |
| 64 DISALLOW_COPY_AND_ASSIGN(ShutdownClientApp); | 64 DISALLOW_COPY_AND_ASSIGN(ShutdownClientApp); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace service_manager | 67 } // namespace service_manager |
| 68 | 68 |
| 69 MojoResult ServiceMain(MojoHandle service_request_handle) { | 69 MojoResult ServiceMain(MojoHandle service_request_handle) { |
| 70 service_manager::ServiceRunner runner(new service_manager::ShutdownClientApp); | 70 service_manager::ServiceRunner runner(new service_manager::ShutdownClientApp); |
| 71 return runner.Run(service_request_handle); | 71 return runner.Run(service_request_handle); |
| 72 } | 72 } |
| OLD | NEW |