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

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

Issue 9317046: Make dart:dom implementation types private so they don't muddle the docs. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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 LocationJs extends DOMTypeJs implements Location native "*Location" { 2 class _LocationJs extends _DOMTypeJs 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 23 matching lines...) Expand all
36 void set search(String value) native "this.search = value;"; 36 void set search(String value) native "this.search = value;";
37 37
38 void assign(String url) native; 38 void assign(String url) native;
39 39
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 }
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