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

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

Issue 1049993002: Get mojo_shell building inside chromium checkout. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix presubmit Created 5 years, 8 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "mojo/services/test_service/test_service_impl.h"
6
7 #include "base/bind.h"
8 #include "base/i18n/time_formatting.h"
9 #include "base/strings/utf_string_conversions.h"
10 #include "mojo/public/cpp/application/application_impl.h"
11 #include "mojo/services/test_service/test_service_application.h"
12 #include "mojo/services/test_service/test_time_service_impl.h"
13 #include "mojo/services/test_service/tracked_service.h"
14
15 namespace mojo {
16 namespace test {
17
18 TestServiceImpl::TestServiceImpl(ApplicationImpl* app_impl,
19 TestServiceApplication* application,
20 InterfaceRequest<TestService> request)
21 : application_(application),
22 app_impl_(app_impl),
23 binding_(this, request.Pass()) {
24 binding_.set_error_handler(this);
25 }
26
27 TestServiceImpl::~TestServiceImpl() {
28 }
29
30 void TestServiceImpl::OnConnectionError() {
31 application_->ReleaseRef();
32 }
33
34 void TestServiceImpl::Ping(const mojo::Callback<void()>& callback) {
35 if (tracking_)
36 tracking_->RecordNewRequest();
37 callback.Run();
38 }
39
40 void SendTimeResponse(
41 const mojo::Callback<void(int64_t)>& requestor_callback,
42 int64_t time_usec) {
43 requestor_callback.Run(time_usec);
44 }
45
46 void TestServiceImpl::ConnectToAppAndGetTime(
47 const mojo::String& app_url,
48 const mojo::Callback<void(int64_t)>& callback) {
49 app_impl_->ConnectToService(app_url, &time_service_);
50 if (tracking_) {
51 tracking_->RecordNewRequest();
52 time_service_->StartTrackingRequests(mojo::Callback<void()>());
53 }
54 time_service_->GetPartyTime(base::Bind(&SendTimeResponse, callback));
55 }
56
57 void TestServiceImpl::StartTrackingRequests(
58 const mojo::Callback<void()>& callback) {
59 TestRequestTrackerPtr tracker;
60 app_impl_->ConnectToService("mojo:test_request_tracker_app", &tracker);
61 tracking_.reset(new TrackedService(tracker.Pass(), Name_, callback));
62 }
63
64 } // namespace test
65 } // namespace mojo
OLDNEW
« no previous file with comments | « mojo/services/test_service/test_service_impl.h ('k') | mojo/services/test_service/test_time_service_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698