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

Side by Side Diff: services/test_service/test_service_impl.cc

Issue 766403002: Move test_service implementation to //services (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 6 years 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 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 "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_connection.h" 10 #include "mojo/public/cpp/application/application_connection.h"
11 #include "mojo/services/test_service/test_request_tracker_client_impl.h" 11 #include "services/test_service/test_request_tracker_client_impl.h"
12 #include "mojo/services/test_service/test_service_application.h" 12 #include "services/test_service/test_service_application.h"
13 #include "mojo/services/test_service/test_time_service_impl.h" 13 #include "services/test_service/test_time_service_impl.h"
14 14
15 namespace mojo { 15 namespace mojo {
16 namespace test { 16 namespace test {
17 17
18 TestServiceImpl::TestServiceImpl(ApplicationConnection* connection, 18 TestServiceImpl::TestServiceImpl(ApplicationConnection* connection,
19 TestServiceApplication* application) 19 TestServiceApplication* application)
20 : application_(application), connection_(connection) { 20 : application_(application), connection_(connection) {
21 } 21 }
22 22
23 TestServiceImpl::~TestServiceImpl() { 23 TestServiceImpl::~TestServiceImpl() {
(...skipping 29 matching lines...) Expand all
53 void TestServiceImpl::StartTrackingRequests( 53 void TestServiceImpl::StartTrackingRequests(
54 const mojo::Callback<void()>& callback) { 54 const mojo::Callback<void()>& callback) {
55 TestRequestTrackerPtr tracker; 55 TestRequestTrackerPtr tracker;
56 connection_->ConnectToService("mojo:test_request_tracker_app", &tracker); 56 connection_->ConnectToService("mojo:test_request_tracker_app", &tracker);
57 tracking_.reset( 57 tracking_.reset(
58 new TestRequestTrackerClientImpl(tracker.Pass(), Name_, callback)); 58 new TestRequestTrackerClientImpl(tracker.Pass(), Name_, callback));
59 } 59 }
60 60
61 } // namespace test 61 } // namespace test
62 } // namespace mojo 62 } // namespace mojo
OLDNEW
« no previous file with comments | « services/test_service/test_service_impl.h ('k') | services/test_service/test_time_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698