OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "mojo/services/test_service/test_request_tracker_application.h" | 5 #include "mojo/services/test_service/test_request_tracker_application.h" |
6 | 6 |
7 #include <assert.h> | 7 #include <assert.h> |
8 #include <utility> | 8 #include <utility> |
9 | 9 |
10 #include "mojo/public/c/system/main.h" | 10 #include "mojo/public/c/system/main.h" |
(...skipping 10 matching lines...) Expand all Loading... |
21 | 21 |
22 void TestRequestTrackerApplication::Initialize(Shell* shell, | 22 void TestRequestTrackerApplication::Initialize(Shell* shell, |
23 const std::string& url, | 23 const std::string& url, |
24 uint32_t id) { | 24 uint32_t id) { |
25 shell_ = shell; | 25 shell_ = shell; |
26 } | 26 } |
27 | 27 |
28 bool TestRequestTrackerApplication::AcceptConnection(Connection* connection) { | 28 bool TestRequestTrackerApplication::AcceptConnection(Connection* connection) { |
29 // Every instance of the service and recorder shares the context. | 29 // Every instance of the service and recorder shares the context. |
30 // Note, this app is single-threaded, so this is thread safe. | 30 // Note, this app is single-threaded, so this is thread safe. |
31 connection->AddService<TestTimeService>(this); | 31 connection->AddInterface<TestTimeService>(this); |
32 connection->AddService<TestRequestTracker>(this); | 32 connection->AddInterface<TestRequestTracker>(this); |
33 connection->AddService<TestTrackedRequestService>(this); | 33 connection->AddInterface<TestTrackedRequestService>(this); |
34 return true; | 34 return true; |
35 } | 35 } |
36 | 36 |
37 void TestRequestTrackerApplication::Create( | 37 void TestRequestTrackerApplication::Create( |
38 Connection* connection, | 38 Connection* connection, |
39 InterfaceRequest<TestTimeService> request) { | 39 InterfaceRequest<TestTimeService> request) { |
40 new TestTimeServiceImpl(shell_, std::move(request)); | 40 new TestTimeServiceImpl(shell_, std::move(request)); |
41 } | 41 } |
42 | 42 |
43 void TestRequestTrackerApplication::Create( | 43 void TestRequestTrackerApplication::Create( |
44 Connection* connection, | 44 Connection* connection, |
45 InterfaceRequest<TestRequestTracker> request) { | 45 InterfaceRequest<TestRequestTracker> request) { |
46 new TestRequestTrackerImpl(std::move(request), &context_); | 46 new TestRequestTrackerImpl(std::move(request), &context_); |
47 } | 47 } |
48 | 48 |
49 void TestRequestTrackerApplication::Create( | 49 void TestRequestTrackerApplication::Create( |
50 Connection* connection, | 50 Connection* connection, |
51 InterfaceRequest<TestTrackedRequestService> request) { | 51 InterfaceRequest<TestTrackedRequestService> request) { |
52 new TestTrackedRequestServiceImpl(std::move(request), &context_); | 52 new TestTrackedRequestServiceImpl(std::move(request), &context_); |
53 } | 53 } |
54 | 54 |
55 } // namespace test | 55 } // namespace test |
56 } // namespace mojo | 56 } // namespace mojo |
57 | 57 |
58 MojoResult MojoMain(MojoHandle shell_handle) { | 58 MojoResult MojoMain(MojoHandle shell_handle) { |
59 mojo::ApplicationRunner runner( | 59 mojo::ApplicationRunner runner( |
60 new mojo::test::TestRequestTrackerApplication); | 60 new mojo::test::TestRequestTrackerApplication); |
61 return runner.Run(shell_handle); | 61 return runner.Run(shell_handle); |
62 } | 62 } |
OLD | NEW |