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

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

Issue 1675153002: ApplicationImpl->ShellConnection, mojom::Application->mojom::ShellClient (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ci2
Patch Set: . Created 4 years, 10 months 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
« no previous file with comments | « mojo/mojo_base.gyp ('k') | mojo/services/test_service/test_request_tracker_application.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 <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
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 }
OLDNEW
« no previous file with comments | « mojo/mojo_base.gyp ('k') | mojo/services/test_service/test_request_tracker_application.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698