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

Side by Side Diff: client/dom/generated/src/frog/Location.dart

Issue 9233028: Frog dart:dom using interfaces and native implementation classes. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge Created 8 years, 11 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 1
2 class Location native "*Location" { 2 class LocationJS implements Location native "*Location" {
3 3
4 String get hash() native "return this.hash;"; 4 String get hash() native "return this.hash;";
5 5
6 void set hash(String value) native "this.hash = value;"; 6 void set hash(String value) native "this.hash = value;";
7 7
8 String get host() native "return this.host;"; 8 String get host() native "return this.host;";
9 9
10 void set host(String value) native "this.host = value;"; 10 void set host(String value) native "this.host = value;";
11 11
12 String get hostname() native "return this.hostname;"; 12 String get hostname() native "return this.hostname;";
(...skipping 27 matching lines...) Expand all
40 void reload() native; 40 void reload() native;
41 41
42 void replace(String url) native; 42 void replace(String url) native;
43 43
44 String toString() native; 44 String toString() native;
45 45
46 var dartObjectLocalStorage; 46 var dartObjectLocalStorage;
47 47
48 String get typeName() native; 48 String get typeName() native;
49 } 49 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/KeyboardEvent.dart ('k') | client/dom/generated/src/frog/LowPass2FilterNode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698