Index: mojo/common/dart/lib/tracing_helper.dart |
diff --git a/mojo/common/dart/lib/tracing_helper.dart b/mojo/common/dart/lib/tracing_helper.dart |
index 0c88c15677283a93aad327e3035b711278f270cf..23c121b4592408b1e83185eb8509912d816f105d 100644 |
--- a/mojo/common/dart/lib/tracing_helper.dart |
+++ b/mojo/common/dart/lib/tracing_helper.dart |
@@ -4,7 +4,7 @@ |
library tracing; |
-import 'trace_controller_impl.dart'; |
+import 'trace_provider_impl.dart'; |
import 'dart:async'; |
import 'dart:convert'; |
@@ -20,7 +20,7 @@ import 'package:mojo_services/tracing/tracing.mojom.dart'; |
// TracingHelper is used by Dart code running in the Mojo shell in order |
// to perform tracing. |
class TracingHelper { |
- TraceControllerImpl _impl; |
+ TraceProviderImpl _impl; |
String _tid; |
// Construct an instance of TracingHelper from within your application's |
@@ -36,9 +36,9 @@ class TracingHelper { |
} |
_tid = "${appName}/${Isolate.current.hashCode.toString()}"; |
ApplicationConnection connection = app.connectToApplication("mojo:tracing"); |
- connection.provideService(TraceControllerName, (e) { |
+ connection.provideService(TraceProviderName, (e) { |
assert(_impl == null); |
- _impl = new TraceControllerImpl.fromEndpoint(e); |
+ _impl = new TraceProviderImpl.fromEndpoint(e); |
}); |
} |