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 | 8 |
9 #include "mojo/public/c/system/main.h" | 9 #include "mojo/public/c/system/main.h" |
10 #include "mojo/public/cpp/bindings/strong_binding.h" | 10 #include "mojo/public/cpp/bindings/strong_binding.h" |
(...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 // It will be deleted automatically when the underlying pipe encounters a | 111 // It will be deleted automatically when the underlying pipe encounters a |
112 // connection error. | 112 // connection error. |
113 new HumanResourceDatabaseImpl(request.Pass()); | 113 new HumanResourceDatabaseImpl(request.Pass()); |
114 } | 114 } |
115 }; | 115 }; |
116 | 116 |
117 } // namespace versioning | 117 } // namespace versioning |
118 } // namespace test | 118 } // namespace test |
119 } // namespace mojo | 119 } // namespace mojo |
120 | 120 |
121 MojoResult MojoMain(MojoHandle application_request) { | 121 MojoResult MojoMain(MojoHandle request) { |
122 mojo::ApplicationRunner runner( | 122 mojo::ApplicationRunner runner( |
123 new mojo::test::versioning::HumanResourceSystemServer()); | 123 new mojo::test::versioning::HumanResourceSystemServer()); |
124 | 124 |
125 return runner.Run(application_request); | 125 return runner.Run(request); |
126 } | 126 } |
OLD | NEW |