| 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/shell/public/c/main.h" | 8 #include "services/service_manager/public/c/main.h" |
| 9 #include "services/shell/public/cpp/connector.h" | 9 #include "services/service_manager/public/cpp/connector.h" |
| 10 #include "services/shell/public/cpp/interface_factory.h" | 10 #include "services/service_manager/public/cpp/interface_factory.h" |
| 11 #include "services/shell/public/cpp/interface_registry.h" | 11 #include "services/service_manager/public/cpp/interface_registry.h" |
| 12 #include "services/shell/public/cpp/service.h" | 12 #include "services/service_manager/public/cpp/service.h" |
| 13 #include "services/shell/public/cpp/service_runner.h" | 13 #include "services/service_manager/public/cpp/service_runner.h" |
| 14 #include "services/shell/tests/shutdown/shutdown_unittest.mojom.h" | 14 #include "services/service_manager/tests/shutdown/shutdown_unittest.mojom.h" |
| 15 | 15 |
| 16 namespace shell { | 16 namespace shell { |
| 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() {} |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 64 DISALLOW_COPY_AND_ASSIGN(ShutdownClientApp); | 64 DISALLOW_COPY_AND_ASSIGN(ShutdownClientApp); |
| 65 }; | 65 }; |
| 66 | 66 |
| 67 } // namespace shell | 67 } // namespace shell |
| 68 | 68 |
| 69 | 69 |
| 70 MojoResult ServiceMain(MojoHandle service_request_handle) { | 70 MojoResult ServiceMain(MojoHandle service_request_handle) { |
| 71 shell::ServiceRunner runner(new shell::ShutdownClientApp); | 71 shell::ServiceRunner runner(new shell::ShutdownClientApp); |
| 72 return runner.Run(service_request_handle); | 72 return runner.Run(service_request_handle); |
| 73 } | 73 } |
| OLD | NEW |