| 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 #include "mojo/public/cpp/bindings/binding_set.h" | |
| 6 #include "services/shell/background/tests/test.mojom.h" | |
| 7 #include "services/shell/public/c/main.h" | |
| 8 #include "services/shell/public/cpp/interface_registry.h" | |
| 9 #include "services/shell/public/cpp/service.h" | |
| 10 #include "services/shell/public/cpp/service_runner.h" | |
| 11 | |
| 12 namespace shell { | |
| 13 | |
| 14 class TestClient : public Service, | |
| 15 public InterfaceFactory<mojom::TestService>, | |
| 16 public mojom::TestService { | |
| 17 public: | |
| 18 TestClient() {} | |
| 19 ~TestClient() override {} | |
| 20 | |
| 21 private: | |
| 22 // Service: | |
| 23 bool OnConnect(const Identity& remote_identity, | |
| 24 InterfaceRegistry* registry) override { | |
| 25 registry->AddInterface(this); | |
| 26 return true; | |
| 27 } | |
| 28 bool OnStop() override { | |
| 29 return true; | |
| 30 } | |
| 31 | |
| 32 // InterfaceFactory<mojom::TestService>: | |
| 33 void Create(const Identity& remote_identity, | |
| 34 mojo::InterfaceRequest<mojom::TestService> request) override { | |
| 35 bindings_.AddBinding(this, std::move(request)); | |
| 36 } | |
| 37 | |
| 38 // mojom::TestService | |
| 39 void Test(const TestCallback& callback) override { | |
| 40 callback.Run(); | |
| 41 } | |
| 42 | |
| 43 mojo::BindingSet<mojom::TestService> bindings_; | |
| 44 | |
| 45 DISALLOW_COPY_AND_ASSIGN(TestClient); | |
| 46 }; | |
| 47 | |
| 48 } // namespace shell | |
| 49 | |
| 50 MojoResult ServiceMain(MojoHandle service_request_handle) { | |
| 51 shell::ServiceRunner runner(new shell::TestClient); | |
| 52 return runner.Run(service_request_handle); | |
| 53 } | |
| OLD | NEW |