| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 <stdint.h> | 5 #include <stdint.h> |
| 6 | 6 |
| 7 #include <map> | 7 #include <map> |
| 8 #include <utility> | 8 #include <utility> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "mojo/public/c/system/main.h" | 11 #include "mojo/public/c/system/main.h" |
| 12 #include "mojo/public/cpp/bindings/strong_binding.h" | 12 #include "mojo/public/cpp/bindings/strong_binding.h" |
| 13 #include "mojo/public/interfaces/bindings/tests/versioning_test_service.mojom.h" | 13 #include "mojo/public/interfaces/bindings/tests/versioning_test_service.mojom.h" |
| 14 #include "services/shell/public/cpp/application_runner.h" | 14 #include "services/shell/public/cpp/application_runner.h" |
| 15 #include "services/shell/public/cpp/interface_factory.h" | 15 #include "services/shell/public/cpp/interface_factory.h" |
| 16 #include "services/shell/public/cpp/shell_client.h" | 16 #include "services/shell/public/cpp/service.h" |
| 17 | 17 |
| 18 namespace mojo { | 18 namespace mojo { |
| 19 namespace test { | 19 namespace test { |
| 20 namespace versioning { | 20 namespace versioning { |
| 21 | 21 |
| 22 struct EmployeeInfo { | 22 struct EmployeeInfo { |
| 23 public: | 23 public: |
| 24 EmployeeInfo() {} | 24 EmployeeInfo() {} |
| 25 | 25 |
| 26 EmployeePtr employee; | 26 EmployeePtr employee; |
| (...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 callback.Run(true); | 88 callback.Run(true); |
| 89 } | 89 } |
| 90 | 90 |
| 91 private: | 91 private: |
| 92 std::map<uint64_t, EmployeeInfo*> employees_; | 92 std::map<uint64_t, EmployeeInfo*> employees_; |
| 93 | 93 |
| 94 StrongBinding<HumanResourceDatabase> strong_binding_; | 94 StrongBinding<HumanResourceDatabase> strong_binding_; |
| 95 }; | 95 }; |
| 96 | 96 |
| 97 class HumanResourceSystemServer | 97 class HumanResourceSystemServer |
| 98 : public shell::ShellClient, | 98 : public shell::Service, |
| 99 public InterfaceFactory<HumanResourceDatabase> { | 99 public InterfaceFactory<HumanResourceDatabase> { |
| 100 public: | 100 public: |
| 101 HumanResourceSystemServer() {} | 101 HumanResourceSystemServer() {} |
| 102 | 102 |
| 103 // shell::ShellClient implementation. | 103 // shell::Service implementation. |
| 104 bool AcceptConnection(Connection* connection) override { | 104 bool OnConnect(Connection* connection) override { |
| 105 connection->AddInterface<HumanResourceDatabase>(this); | 105 connection->AddInterface<HumanResourceDatabase>(this); |
| 106 return true; | 106 return true; |
| 107 } | 107 } |
| 108 | 108 |
| 109 // InterfaceFactory<HumanResourceDatabase> implementation. | 109 // InterfaceFactory<HumanResourceDatabase> implementation. |
| 110 void Create(Connection* connection, | 110 void Create(Connection* connection, |
| 111 InterfaceRequest<HumanResourceDatabase> request) override { | 111 InterfaceRequest<HumanResourceDatabase> request) override { |
| 112 // It will be deleted automatically when the underlying pipe encounters a | 112 // It will be deleted automatically when the underlying pipe encounters a |
| 113 // connection error. | 113 // connection error. |
| 114 new HumanResourceDatabaseImpl(std::move(request)); | 114 new HumanResourceDatabaseImpl(std::move(request)); |
| 115 } | 115 } |
| 116 }; | 116 }; |
| 117 | 117 |
| 118 } // namespace versioning | 118 } // namespace versioning |
| 119 } // namespace test | 119 } // namespace test |
| 120 } // namespace mojo | 120 } // namespace mojo |
| 121 | 121 |
| 122 MojoResult MojoMain(MojoHandle request) { | 122 MojoResult MojoMain(MojoHandle request) { |
| 123 mojo::ApplicationRunner runner( | 123 mojo::ApplicationRunner runner( |
| 124 new mojo::test::versioning::HumanResourceSystemServer()); | 124 new mojo::test::versioning::HumanResourceSystemServer()); |
| 125 | 125 |
| 126 return runner.Run(request); | 126 return runner.Run(request); |
| 127 } | 127 } |
| OLD | NEW |