De-client TestRequestTracker
This interface is used with to run the mojo_shell_tests which run a
variety of services and send tracking information back and forth. The
TestRequestTracker's Client was used for one back-and-forth that
exchanged a string in one direction and a uint64 in the other. This
inverts the direction in which the two are sent which cuts out an
extra callback + message jump and renames TestRequestTrackerClientImpl
to TrackedService to more closely match (I think) the intention.
BUG=451319
R=viettrungluu@chromium.org
Review URL: https://codereview.chromium.org/901463002
diff --git a/services/test_service/BUILD.gn b/services/test_service/BUILD.gn
index 350a36c..1f2a267 100644
--- a/services/test_service/BUILD.gn
+++ b/services/test_service/BUILD.gn
@@ -14,14 +14,14 @@
mojo_native_application("test_app") {
sources = [
- "test_request_tracker_client_impl.cc",
- "test_request_tracker_client_impl.h",
"test_service_application.cc",
"test_service_application.h",
"test_service_impl.cc",
"test_service_impl.h",
"test_time_service_impl.cc",
"test_time_service_impl.h",
+ "tracked_service.cc",
+ "tracked_service.h",
]
deps = [
@@ -38,14 +38,14 @@
mojo_native_application("test_request_tracker_app") {
sources = [
- "test_request_tracker_client_impl.cc",
- "test_request_tracker_client_impl.h",
"test_request_tracker_application.cc",
"test_request_tracker_application.h",
- "test_time_service_impl.cc",
- "test_time_service_impl.h",
"test_request_tracker_impl.cc",
"test_request_tracker_impl.h",
+ "test_time_service_impl.cc",
+ "test_time_service_impl.h",
+ "tracked_service.cc",
+ "tracked_service.h",
]
deps = [