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

Unified Diff: services/test_service/test_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_service_impl.cc
diff --git a/services/test_service/test_service_impl.cc b/services/test_service/test_service_impl.cc
index 86ba08c3c9302e1176226c67812e894b2f2c3466..140212c837b29d3551e28dc8a3c6cfa91a359972 100644
--- a/services/test_service/test_service_impl.cc
+++ b/services/test_service/test_service_impl.cc
@@ -8,9 +8,9 @@
#include "base/i18n/time_formatting.h"
#include "base/strings/utf_string_conversions.h"
#include "mojo/public/cpp/application/application_connection.h"
-#include "services/test_service/test_request_tracker_client_impl.h"
#include "services/test_service/test_service_application.h"
#include "services/test_service/test_time_service_impl.h"
+#include "services/test_service/tracked_service.h"
namespace mojo {
namespace test {
@@ -54,8 +54,7 @@ void TestServiceImpl::StartTrackingRequests(
const mojo::Callback<void()>& callback) {
TestRequestTrackerPtr tracker;
connection_->ConnectToService("mojo:test_request_tracker_app", &tracker);
- tracking_.reset(
- new TestRequestTrackerClientImpl(tracker.Pass(), Name_, callback));
+ tracking_.reset(new TrackedService(tracker.Pass(), Name_, callback));
}
} // namespace test

Powered by Google App Engine
This is Rietveld 408576698