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

Unified Diff: services/test_service/test_time_service_impl.cc

Issue 901463002: De-client TestRequestTracker (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: services/test_service/test_time_service_impl.cc
diff --git a/services/test_service/test_time_service_impl.cc b/services/test_service/test_time_service_impl.cc
index 5a64122f8910e83b5f5e110b8c7ea5f0d1ac63ef..3c19e92f88eb1b27a4cd0100d8c8841750d06456 100644
--- a/services/test_service/test_time_service_impl.cc
+++ b/services/test_service/test_time_service_impl.cc
@@ -5,8 +5,8 @@
#include "base/time/time.h"
#include "mojo/public/cpp/application/application_connection.h"
#include "services/test_service/test_request_tracker.mojom.h"
-#include "services/test_service/test_request_tracker_client_impl.h"
#include "services/test_service/test_time_service_impl.h"
+#include "services/test_service/tracked_service.h"
namespace mojo {
namespace test {
@@ -24,8 +24,7 @@ void TestTimeServiceImpl::StartTrackingRequests(
const mojo::Callback<void()>& callback) {
TestRequestTrackerPtr tracker;
application_->ConnectToService("mojo:test_request_tracker_app", &tracker);
- tracking_.reset(new TestRequestTrackerClientImpl(
- tracker.Pass(), Name_, callback));
+ tracking_.reset(new TrackedService(tracker.Pass(), Name_, callback));
}
void TestTimeServiceImpl::GetPartyTime(

Powered by Google App Engine
This is Rietveld 408576698