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

Unified Diff: lib/html/html_frog.dart

Issue 10389097: Move dart:dom to dart:dom_deprecated (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fixes from review 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
« no previous file with comments | « lib/html/html_dartium.dart ('k') | lib/isolate/frog/isolateimpl.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/html_frog.dart
diff --git a/lib/html/html_frog.dart b/lib/html/html_frog.dart
index c15b5aa1d75af479d09bac8a0d3a506542012543..9cc5475cd8d1a5c7f5568140a9fd5256e2fe91a9 100644
--- a/lib/html/html_frog.dart
+++ b/lib/html/html_frog.dart
@@ -1079,7 +1079,7 @@ _DocumentImpl _cachedDocument;
void _init() {
_cachedDocument = _document;
_cachedWindow = _window;
- // Feature detect that dart:dom and dart:html are not both loaded by
+ // Feature detect that dart:dom_deprecated and dart:html are not both loaded by
// checking for the presence of a bug that manifests itself when both
// libraries are loaded.
// TODO(jacobr): remove this code once b/1911 is fixed and the frog compiler
@@ -1089,9 +1089,9 @@ void _init() {
element.innerHTML = 'f';
if (element.text == '') {
_cachedWindow.console.error(
- 'Cannot import dart:html and dart:dom within the same application.');
+ 'Cannot import dart:html and dart:dom_deprecated within the same application.');
throw new UnsupportedOperationException(
- 'Cannot import dart:html and dart:dom within the same application.');
+ 'Cannot import dart:html and dart:dom_deprecated within the same application.');
}
}
« no previous file with comments | « lib/html/html_dartium.dart ('k') | lib/isolate/frog/isolateimpl.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698