| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ | |
| 6 #define MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ | |
| 7 | |
| 8 #include "base/bind.h" | |
| 9 #include "base/macros.h" | |
| 10 #include "mojo/public/cpp/bindings/binding_set.h" | |
| 11 #include "mojo/shell/public/cpp/application_runner.h" | |
| 12 #include "mojo/shell/public/cpp/interface_factory.h" | |
| 13 #include "mojo/shell/public/cpp/shell_client.h" | |
| 14 #include "mojo/shell/public/interfaces/shell_client.mojom.h" | |
| 15 #include "mojo/shell/tests/lifecycle/lifecycle_unittest.mojom.h" | |
| 16 | |
| 17 using LifecycleControl = mojo::shell::test::mojom::LifecycleControl; | |
| 18 using LifecycleControlRequest = | |
| 19 mojo::shell::test::mojom::LifecycleControlRequest; | |
| 20 | |
| 21 namespace mojo { | |
| 22 class ShellConnection; | |
| 23 namespace shell { | |
| 24 namespace test { | |
| 25 | |
| 26 class AppClient : public ShellClient, | |
| 27 public InterfaceFactory<LifecycleControl>, | |
| 28 public LifecycleControl { | |
| 29 public: | |
| 30 AppClient(); | |
| 31 explicit AppClient(shell::mojom::ShellClientRequest request); | |
| 32 ~AppClient() override; | |
| 33 | |
| 34 void set_runner(ApplicationRunner* runner) { | |
| 35 runner_ = runner; | |
| 36 } | |
| 37 | |
| 38 // ShellClient: | |
| 39 bool AcceptConnection(Connection* connection) override; | |
| 40 | |
| 41 // InterfaceFactory<LifecycleControl>: | |
| 42 void Create(Connection* connection, LifecycleControlRequest request) override; | |
| 43 | |
| 44 // LifecycleControl: | |
| 45 void Ping(const PingCallback& callback) override; | |
| 46 void GracefulQuit() override; | |
| 47 void Crash() override; | |
| 48 void CloseShellConnection() override; | |
| 49 | |
| 50 private: | |
| 51 void BindingLost(); | |
| 52 | |
| 53 ApplicationRunner* runner_ = nullptr; | |
| 54 BindingSet<LifecycleControl> bindings_; | |
| 55 scoped_ptr<ShellConnection> connection_; | |
| 56 | |
| 57 DISALLOW_COPY_AND_ASSIGN(AppClient); | |
| 58 }; | |
| 59 | |
| 60 } // namespace test | |
| 61 } // namespace shell | |
| 62 } // namespace mojo | |
| 63 | |
| 64 #endif // MOJO_SHELL_TESTS_LIFECYCLE_APP_CLIENT_H_ | |
| OLD | NEW |