| Index: client/dom/src/native_DOMImplementation.dart
|
| diff --git a/client/dom/src/native_DOMImplementation.dart b/client/dom/src/native_DOMImplementation.dart
|
| index 1ef359ffe6b2f4a63127047fdef88a158a4f9394..52d0d8ab5f72340151148f312cc2a55fac953422 100644
|
| --- a/client/dom/src/native_DOMImplementation.dart
|
| +++ b/client/dom/src/native_DOMImplementation.dart
|
| @@ -32,27 +32,27 @@ class NPObject extends DOMWrapperBase {
|
| NPObject._createNPObject();
|
| }
|
|
|
| -class DOMWindowCrossFrameImplementation extends DOMWrapperBase implements DOMWindow {
|
| +class WindowCrossFrameImplementation extends DOMWrapperBase implements Window {
|
| // Fields.
|
| - History get history() native "DOMWindow_history_cross_frame_Getter";
|
| - Location get location() native "DOMWindow_location_cross_frame_Getter";
|
| - bool get closed() native "DOMWindow_closed_Getter";
|
| - int get length() native "DOMWindow_length_Getter";
|
| - DOMWindow get opener() native "DOMWindow_opener_Getter";
|
| - DOMWindow get parent() native "DOMWindow_parent_Getter";
|
| - DOMWindow get top() native "DOMWindow_top_Getter";
|
| + History get history() native "Window_history_cross_frame_Getter";
|
| + Location get location() native "Window_location_cross_frame_Getter";
|
| + bool get closed() native "Window_closed_Getter";
|
| + int get length() native "Window_length_Getter";
|
| + DOMWindow get opener() native "Window_opener_Getter";
|
| + DOMWindow get parent() native "Window_parent_Getter";
|
| + DOMWindow get top() native "Window_top_Getter";
|
|
|
| // Methods.
|
| - void focus() native "DOMWindow_focus_Callback";
|
| - void blur() native "DOMWindow_blur_Callback";
|
| - void close() native "DOMWindow_close_Callback";
|
| - void postMessage([_arg0, _arg1, _arg2]) native "DOMWindow_postMessage_Callback";
|
| + void focus() native "Window_focus_Callback";
|
| + void blur() native "Window_blur_Callback";
|
| + void close() native "Window_close_Callback";
|
| + void postMessage([_arg0, _arg1, _arg2]) native "Window_postMessage_Callback";
|
|
|
| // Implementation support.
|
| - static DOMWindowCrossFrameImplementation _createDOMWindowCrossFrameImplementation() => new DOMWindowCrossFrameImplementation._createDOMWindowCrossFrameImplementation();
|
| - DOMWindowCrossFrameImplementation._createDOMWindowCrossFrameImplementation();
|
| + static WindowCrossFrameImplementation _createWindowCrossFrameImplementation() => new WindowCrossFrameImplementation._createWindowCrossFrameImplementation();
|
| + WindowCrossFrameImplementation._createWindowCrossFrameImplementation();
|
|
|
| - String get typeName() => "DOMWindow";
|
| + String get typeName() => "Window";
|
| }
|
|
|
| class HistoryCrossFrameImplementation extends DOMWrapperBase implements History {
|
|
|