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

Unified Diff: sdk/lib/html/src/native_DOMImplementation.dart

Issue 11299257: Fix dartium tests after legacy getter removal (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 1 month 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: sdk/lib/html/src/native_DOMImplementation.dart
===================================================================
--- sdk/lib/html/src/native_DOMImplementation.dart (revision 15525)
+++ sdk/lib/html/src/native_DOMImplementation.dart (working copy)
@@ -51,13 +51,13 @@
_DOMWindowCrossFrame.internal();
// 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";
- Window get opener() native "DOMWindow_opener_Getter";
- Window get parent() native "DOMWindow_parent_Getter";
- Window get top() native "DOMWindow_top_Getter";
+ 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";
+ Window get opener native "DOMWindow_opener_Getter";
+ Window get parent native "DOMWindow_parent_Getter";
+ Window get top native "DOMWindow_top_Getter";
// Methods.
void close() native "DOMWindow_close_Callback";
« no previous file with comments | « sdk/lib/html/dartium/html_dartium.dart ('k') | sdk/lib/html/templates/html/dart2js/impl_LocalWindow.darttemplate » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698