diff --git a/pkg/analyzer/lib/src/generated/utilities_general.dart b/pkg/analyzer/lib/src/generated/utilities_general.dart index 83bfaa1a7db..d120a81abdd 100644 --- a/pkg/analyzer/lib/src/generated/utilities_general.dart +++ b/pkg/analyzer/lib/src/generated/utilities_general.dart @@ -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 { diff --git a/pkg/compiler/lib/src/common/tasks.dart b/pkg/compiler/lib/src/common/tasks.dart index 56253dbf3cb..989463ef8cb 100644 --- a/pkg/compiler/lib/src/common/tasks.dart +++ b/pkg/compiler/lib/src/common/tasks.dart @@ -4,7 +4,7 @@ library dart2js.common.tasks; -import 'dart:profiler' show +import 'dart:developer' show UserTag; import '../compiler.dart' show Compiler; diff --git a/pkg/dart2js_incremental/lib/dart2js_incremental.dart b/pkg/dart2js_incremental/lib/dart2js_incremental.dart index bcbc7606d59..12d285c8dde 100644 --- a/pkg/dart2js_incremental/lib/dart2js_incremental.dart +++ b/pkg/dart2js_incremental/lib/dart2js_incremental.dart @@ -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 diff --git a/runtime/vm/thread_test.cc b/runtime/vm/thread_test.cc index 545ed8a3546..a412dcebc70 100644 --- a/runtime/vm/thread_test.cc +++ b/runtime/vm/thread_test.cc @@ -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"