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_service_impl.h" | 5 #include "mojo/services/test_service/test_service_impl.h" |
6 | 6 |
7 #include "base/bind.h" | 7 #include "base/bind.h" |
8 #include "base/i18n/time_formatting.h" | 8 #include "base/i18n/time_formatting.h" |
9 #include "base/strings/utf_string_conversions.h" | 9 #include "base/strings/utf_string_conversions.h" |
10 #include "mojo/public/cpp/application/application_impl.h" | 10 #include "mojo/application/public/cpp/application_impl.h" |
11 #include "mojo/services/test_service/test_service_application.h" | 11 #include "mojo/services/test_service/test_service_application.h" |
12 #include "mojo/services/test_service/test_time_service_impl.h" | 12 #include "mojo/services/test_service/test_time_service_impl.h" |
13 #include "mojo/services/test_service/tracked_service.h" | 13 #include "mojo/services/test_service/tracked_service.h" |
14 | 14 |
15 namespace mojo { | 15 namespace mojo { |
16 namespace test { | 16 namespace test { |
17 | 17 |
18 TestServiceImpl::TestServiceImpl(ApplicationImpl* app_impl, | 18 TestServiceImpl::TestServiceImpl(ApplicationImpl* app_impl, |
19 TestServiceApplication* application, | 19 TestServiceApplication* application, |
20 InterfaceRequest<TestService> request) | 20 InterfaceRequest<TestService> request) |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
56 | 56 |
57 void TestServiceImpl::StartTrackingRequests( | 57 void TestServiceImpl::StartTrackingRequests( |
58 const mojo::Callback<void()>& callback) { | 58 const mojo::Callback<void()>& callback) { |
59 TestRequestTrackerPtr tracker; | 59 TestRequestTrackerPtr tracker; |
60 app_impl_->ConnectToService("mojo:test_request_tracker_app", &tracker); | 60 app_impl_->ConnectToService("mojo:test_request_tracker_app", &tracker); |
61 tracking_.reset(new TrackedService(tracker.Pass(), Name_, callback)); | 61 tracking_.reset(new TrackedService(tracker.Pass(), Name_, callback)); |
62 } | 62 } |
63 | 63 |
64 } // namespace test | 64 } // namespace test |
65 } // namespace mojo | 65 } // namespace mojo |
OLD | NEW |