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

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

Issue 9623003: Rename DOMWindow to Window in Dartium bindings. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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 | « client/dom/scripts/generator.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « client/dom/scripts/generator.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698