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

Unified Diff: lib/registry.dart

Issue 1025293003: pkg/isolate: library renaming, removed unused method, fix creation of TimeoutException (Closed) Base URL: https://github.com/dart-lang/isolate.git@master
Patch Set: Created 5 years, 9 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: lib/registry.dart
diff --git a/lib/registry.dart b/lib/registry.dart
index 6b9448c775d673e6f728f94ed54cf692ba234fbe..ddc801adba0313cdfe4fd3cbf777586a8794266e 100644
--- a/lib/registry.dart
+++ b/lib/registry.dart
@@ -3,13 +3,14 @@
// BSD-style license that can be found in the LICENSE file.
/// An isolate-compatible object registry and lookup service.
-library dart.pkg.isolate.registry;
+library isolate.registry;
-import "dart:async" show Future, Completer, TimeoutException;
-import "dart:isolate" show RawReceivePort, SendPort, Capability;
-import "dart:collection" show HashMap, HashSet;
-import "ports.dart";
-import "src/lists.dart";
+import 'dart:async' show Future, Completer, TimeoutException;
+import 'dart:collection' show HashMap, HashSet;
+import 'dart:isolate' show RawReceivePort, SendPort, Capability;
+
+import 'ports.dart';
+import 'src/lists.dart';
// Command tags.
const int _ADD = 0;

Powered by Google App Engine
This is Rietveld 408576698