Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(84)

Side by Side Diff: mojo/public/cpp/bindings/tests/versioning_test_service.cc

Issue 1410053006: Move third_party/mojo/src/mojo/public to mojo/public (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: merge Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 <map> 5 #include <map>
6 6
7 #include "mojo/application/public/cpp/application_connection.h" 7 #include "mojo/application/public/cpp/application_connection.h"
8 #include "mojo/application/public/cpp/application_delegate.h" 8 #include "mojo/application/public/cpp/application_delegate.h"
9 #include "mojo/application/public/cpp/application_runner.h" 9 #include "mojo/application/public/cpp/application_runner.h"
10 #include "mojo/application/public/cpp/interface_factory.h" 10 #include "mojo/application/public/cpp/interface_factory.h"
11 #include "third_party/mojo/src/mojo/public/c/system/main.h" 11 #include "mojo/public/c/system/main.h"
12 #include "third_party/mojo/src/mojo/public/cpp/bindings/strong_binding.h" 12 #include "mojo/public/cpp/bindings/strong_binding.h"
13 #include "third_party/mojo/src/mojo/public/cpp/system/macros.h" 13 #include "mojo/public/cpp/system/macros.h"
14 #include "third_party/mojo/src/mojo/public/interfaces/bindings/tests/versioning_ test_service.mojom.h" 14 #include "mojo/public/interfaces/bindings/tests/versioning_test_service.mojom.h"
15 15
16 namespace mojo { 16 namespace mojo {
17 namespace test { 17 namespace test {
18 namespace versioning { 18 namespace versioning {
19 19
20 struct EmployeeInfo { 20 struct EmployeeInfo {
21 public: 21 public:
22 EmployeeInfo() {} 22 EmployeeInfo() {}
23 23
24 EmployeePtr employee; 24 EmployeePtr employee;
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 } // namespace versioning 116 } // namespace versioning
117 } // namespace test 117 } // namespace test
118 } // namespace mojo 118 } // namespace mojo
119 119
120 MojoResult MojoMain(MojoHandle application_request) { 120 MojoResult MojoMain(MojoHandle application_request) {
121 mojo::ApplicationRunner runner( 121 mojo::ApplicationRunner runner(
122 new mojo::test::versioning::HumanResourceSystemServer()); 122 new mojo::test::versioning::HumanResourceSystemServer());
123 123
124 return runner.Run(application_request); 124 return runner.Run(application_request);
125 } 125 }
OLDNEW
« no previous file with comments | « mojo/public/cpp/bindings/tests/versioning_apptest.cc ('k') | mojo/public/cpp/bindings/type_converter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698