| 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 "mojo/shell/public/cpp/application_runner.h" | 14 #include "services/shell/public/cpp/application_runner.h" |
| 15 #include "mojo/shell/public/cpp/interface_factory.h" | 15 #include "services/shell/public/cpp/interface_factory.h" |
| 16 #include "mojo/shell/public/cpp/shell_client.h" | 16 #include "services/shell/public/cpp/shell_client.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 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 |