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 #ifndef SERVICES_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ | 5 #ifndef SERVICES_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ |
6 #define SERVICES_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ | 6 #define SERVICES_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ |
7 | 7 |
8 #include <memory> | 8 #include <memory> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/macros.h" | 11 #include "base/macros.h" |
12 #include "mojo/public/cpp/bindings/binding_set.h" | 12 #include "mojo/public/cpp/bindings/binding_set.h" |
13 #include "services/shell/public/cpp/application_runner.h" | 13 #include "services/shell/public/cpp/application_runner.h" |
14 #include "services/shell/public/cpp/interface_factory.h" | 14 #include "services/shell/public/cpp/interface_factory.h" |
15 #include "services/shell/public/cpp/service.h" | 15 #include "services/shell/public/cpp/service.h" |
16 #include "services/shell/public/interfaces/service.mojom.h" | 16 #include "services/shell/public/interfaces/service.mojom.h" |
17 #include "services/shell/tests/lifecycle/lifecycle_unittest.mojom.h" | 17 #include "services/shell/tests/lifecycle/lifecycle_unittest.mojom.h" |
18 | 18 |
19 using LifecycleControl = shell::test::mojom::LifecycleControl; | 19 using LifecycleControl = shell::test::mojom::LifecycleControl; |
20 using LifecycleControlRequest = shell::test::mojom::LifecycleControlRequest; | 20 using LifecycleControlRequest = shell::test::mojom::LifecycleControlRequest; |
21 | 21 |
22 namespace shell { | 22 namespace shell { |
23 class ShellConnection; | 23 class ServiceContext; |
24 | 24 |
25 namespace test { | 25 namespace test { |
26 | 26 |
27 class AppClient : public Service, | 27 class AppClient : public Service, |
28 public InterfaceFactory<LifecycleControl>, | 28 public InterfaceFactory<LifecycleControl>, |
29 public LifecycleControl { | 29 public LifecycleControl { |
30 public: | 30 public: |
31 AppClient(); | 31 AppClient(); |
32 explicit AppClient(shell::mojom::ServiceRequest request); | 32 explicit AppClient(shell::mojom::ServiceRequest request); |
33 ~AppClient() override; | 33 ~AppClient() override; |
(...skipping 12 matching lines...) Expand all Loading... |
46 void Ping(const PingCallback& callback) override; | 46 void Ping(const PingCallback& callback) override; |
47 void GracefulQuit() override; | 47 void GracefulQuit() override; |
48 void Crash() override; | 48 void Crash() override; |
49 void CloseShellConnection() override; | 49 void CloseShellConnection() override; |
50 | 50 |
51 private: | 51 private: |
52 void BindingLost(); | 52 void BindingLost(); |
53 | 53 |
54 ApplicationRunner* runner_ = nullptr; | 54 ApplicationRunner* runner_ = nullptr; |
55 mojo::BindingSet<LifecycleControl> bindings_; | 55 mojo::BindingSet<LifecycleControl> bindings_; |
56 std::unique_ptr<ShellConnection> connection_; | 56 std::unique_ptr<ServiceContext> context_; |
57 | 57 |
58 DISALLOW_COPY_AND_ASSIGN(AppClient); | 58 DISALLOW_COPY_AND_ASSIGN(AppClient); |
59 }; | 59 }; |
60 | 60 |
61 } // namespace test | 61 } // namespace test |
62 } // namespace shell | 62 } // namespace shell |
63 | 63 |
64 #endif // SERVICES_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ | 64 #endif // SERVICES_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ |
OLD | NEW |