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

Unified Diff: frog/world.dart

Issue 10389097: Move dart:dom to dart:dom_deprecated (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 7 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: frog/world.dart
diff --git a/frog/world.dart b/frog/world.dart
index d4550fb7ecf6dcb8a8b64f7df78e7a54ef6be5ea..b31e9632ea897f053c027348c27cdb11c3646b86 100644
--- a/frog/world.dart
+++ b/frog/world.dart
@@ -303,8 +303,8 @@ class World {
+ '${existing.span.locationText} with priority $namedPri)';
// We trust that conflicting native names in builtin libraries are
// harmless. Most cases there are no conflicts, currently isolates
- // in coreimpl and dart:dom both define web workers to avoid adding a
- // dependency from corelib to dart:dom.
+ // in coreimpl and dart:dom_deprecated both define web workers to avoid adding a
+ // dependency from corelib to dart:dom_deprecated.
world.info(msg, named.span, existing.span);
} else {
// Conflicting js name in same library. This happens because
@@ -471,7 +471,7 @@ class World {
libraries[filename] = library;
_todo.add(library);
- if (filename == 'dart:dom') {
+ if (filename == 'dart:dom_deprecated') {
dom = library;
} else if (filename == 'dart:html') {
html = library;

Powered by Google App Engine
This is Rietveld 408576698