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

Unified Diff: lib/html/dartium/html_dartium.dart

Issue 11086029: Better return types for window.location and window.history (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 2 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:
Download patch
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/systemhtml.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: lib/html/dartium/html_dartium.dart
diff --git a/lib/html/dartium/html_dartium.dart b/lib/html/dartium/html_dartium.dart
index 0199544e00161980be3ff5aae150f95fb1f07431..c4f4c9cd4f9e6ff930d58bc4a6da1247040fa56e 100644
--- a/lib/html/dartium/html_dartium.dart
+++ b/lib/html/dartium/html_dartium.dart
@@ -20154,7 +20154,7 @@ abstract class LocalWindow implements EventTarget, Window {
abstract Event get event;
/** @domName Window.history */
- abstract History get history;
+ abstract LocalHistory get history;
/** @domName DOMWindow.indexedDB */
abstract IDBFactory get indexedDB;
@@ -20169,7 +20169,7 @@ abstract class LocalWindow implements EventTarget, Window {
abstract Storage get localStorage;
/** @domName Window.location */
- Location location;
+ LocalLocation location;
/** @domName Window.locationbar */
abstract BarInfo get locationbar;
@@ -20597,7 +20597,7 @@ class _DOMWindowImpl extends _EventTargetImpl implements LocalWindow {
Event get event native "DOMWindow_event_Getter";
- History get history native "DOMWindow_history_Getter";
+ LocalHistory get history native "DOMWindow_history_Getter";
IDBFactory get indexedDB native "DOMWindow_indexedDB_Getter";
@@ -20607,7 +20607,7 @@ class _DOMWindowImpl extends _EventTargetImpl implements LocalWindow {
Storage get localStorage native "DOMWindow_localStorage_Getter";
- Location get location native "DOMWindow_location_Getter";
+ LocalLocation get location native "DOMWindow_location_Getter";
void set location(LocalLocation value) native "DOMWindow_location_Setter";
« no previous file with comments | « lib/html/dart2js/html_dart2js.dart ('k') | lib/html/scripts/systemhtml.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698