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

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

Issue 10442057: Native wrappers should implement dart:html interfaces. (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_DOMImplementation.dart
diff --git a/lib/dom/src/native_DOMImplementation.dart b/lib/dom/src/native_DOMImplementation.dart
index 1c8d8e4608a498fee080b8a966eeb2ba75314240..434eaa5817fc9656dd89b34d25c688f0635f27d2 100644
--- a/lib/dom/src/native_DOMImplementation.dart
+++ b/lib/dom/src/native_DOMImplementation.dart
@@ -32,7 +32,7 @@ class _Utils {
}
static window() native "Utils_window";
- static SendPort spawnDomIsolateImpl(_DOMWindow window, String entryPoint) native "Utils_spawnDomIsolate";
+ static SendPort spawnDomIsolateImpl(Window window, String entryPoint) native "Utils_spawnDomIsolate";
}
Utils_print(String message) native "Utils_print";
@@ -44,7 +44,7 @@ class _NPObject extends _DOMWrapperBase {
invoke(String methodName, [ObjectArray args = null]) native "NPObject_invoke";
}
-class _DOMWindowCrossFrameDOMImpl extends _DOMWrapperBase implements _DOMWindow {
+class _DOMWindowCrossFrameDOMImpl extends _DOMWrapperBase implements Window {
_DOMWindowCrossFrameDOMImpl();
// Fields.
@@ -66,7 +66,7 @@ class _DOMWindowCrossFrameDOMImpl extends _DOMWrapperBase implements _DOMWindow
String get typeName() => "DOMWindow";
}
-class _HistoryCrossFrameDOMImpl extends _DOMWrapperBase implements _History {
+class _HistoryCrossFrameDOMImpl extends _DOMWrapperBase implements History {
_HistoryCrossFrameDOMImpl();
// Methods.
@@ -78,7 +78,7 @@ class _HistoryCrossFrameDOMImpl extends _DOMWrapperBase implements _History {
String get typeName() => "History";
}
-class _LocationCrossFrameDOMImpl extends _DOMWrapperBase implements _Location {
+class _LocationCrossFrameDOMImpl extends _DOMWrapperBase implements Location {
_LocationCrossFrameDOMImpl();
// Fields.

Powered by Google App Engine
This is Rietveld 408576698