Remove final users of dart:profiler library

BUG=
R=turnidge@google.com

Review URL: https://codereview.chromium.org/1394533002 .
This commit is contained in:
John McCutchan
2015-10-07 09:27:22 -07:00
parent 9ad57e7aa3
commit 98638457ce
4 changed files with 5 additions and 5 deletions
@@ -4,7 +4,7 @@
library engine.utilities.general;
import 'dart:profiler';
import 'dart:developer' show UserTag;
/**
* Jenkins hash function, optimized for small integers.
@@ -33,7 +33,7 @@ class JenkinsSmiHash {
/**
* Helper class for gathering performance statistics. This class is modeled on
* the UserTag class in dart:profiler so that it can interoperate easily with
* the UserTag class in dart:developer so that it can interoperate easily with
* it.
*/
abstract class PerformanceTag {
+1 -1
View File
@@ -4,7 +4,7 @@
library dart2js.common.tasks;
import 'dart:profiler' show
import 'dart:developer' show
UserTag;
import '../compiler.dart' show
Compiler;
@@ -8,7 +8,7 @@ import 'dart:async' show
EventSink,
Future;
import 'dart:profiler' show
import 'dart:developer' show
UserTag;
import 'package:compiler/src/apiimpl.dart' show
+1 -1
View File
@@ -358,7 +358,7 @@ TEST_CASE(SafepointTestDart) {
#endif // USING_SIMULATOR
char buffer[1024];
OS::SNPrint(buffer, sizeof(buffer),
"import 'dart:profiler';\n"
"import 'dart:developer';\n"
"int dummy = 0;\n"
"main() {\n"
" new UserTag('foo').makeCurrent();\n"