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

Unified Diff: lib/dom/src/native_DOMPublic.dart

Issue 10456006: Wrapperless dart:html for Dartium. (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: lib/dom/src/native_DOMPublic.dart
diff --git a/lib/dom/src/native_DOMPublic.dart b/lib/dom/src/native_DOMPublic.dart
index ffc00334321ebaedaeca5532c81ba288a1cadb52..dba636bef4ef0c50acba5ef6e4e5357169270e7f 100644
--- a/lib/dom/src/native_DOMPublic.dart
+++ b/lib/dom/src/native_DOMPublic.dart
@@ -5,7 +5,7 @@
// This API is exploratory.
spawnDomIsolate(Window targetWindowWrapped, String entryPoint) {
final targetWindow = _unwrap(targetWindowWrapped);
- if (targetWindow is! _DOMWindowDOMImpl && targetWindow is! _DOMWindowCrossFrameDOMImpl) {
+ if (targetWindow is! _DOMWindowImpl && targetWindow is! _DOMWindowCrossFrameImpl) {
throw 'Bad window argument: $targetWindow';
}
final result = new Completer<SendPort>();

Powered by Google App Engine
This is Rietveld 408576698