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

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

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 _HTMLAnchorElementJs extends _HTMLElementJs implements HTMLAnchorElement n ative "*HTMLAnchorElement" { 2 class _HTMLAnchorElementJs extends _HTMLElementJs implements HTMLAnchorElement n ative "*HTMLAnchorElement" {
3 3
4 String get charset() native "return this.charset;"; 4 String charset;
5 5
6 void set charset(String value) native "this.charset = value;"; 6 String coords;
7 7
8 String get coords() native "return this.coords;"; 8 String download;
9 9
10 void set coords(String value) native "this.coords = value;"; 10 String hash;
11 11
12 String get download() native "return this.download;"; 12 String host;
13 13
14 void set download(String value) native "this.download = value;"; 14 String hostname;
15 15
16 String get hash() native "return this.hash;"; 16 String href;
17 17
18 void set hash(String value) native "this.hash = value;"; 18 String hreflang;
19 19
20 String get host() native "return this.host;"; 20 String name;
21 21
22 void set host(String value) native "this.host = value;"; 22 final String origin;
23 23
24 String get hostname() native "return this.hostname;"; 24 String pathname;
25 25
26 void set hostname(String value) native "this.hostname = value;"; 26 String ping;
27 27
28 String get href() native "return this.href;"; 28 String port;
29 29
30 void set href(String value) native "this.href = value;"; 30 String protocol;
31 31
32 String get hreflang() native "return this.hreflang;"; 32 String rel;
33 33
34 void set hreflang(String value) native "this.hreflang = value;"; 34 String rev;
35 35
36 String get name() native "return this.name;"; 36 String search;
37 37
38 void set name(String value) native "this.name = value;"; 38 String shape;
39 39
40 String get origin() native "return this.origin;"; 40 String target;
41 41
42 String get pathname() native "return this.pathname;"; 42 final String text;
43 43
44 void set pathname(String value) native "this.pathname = value;"; 44 String type;
45
46 String get ping() native "return this.ping;";
47
48 void set ping(String value) native "this.ping = value;";
49
50 String get port() native "return this.port;";
51
52 void set port(String value) native "this.port = value;";
53
54 String get protocol() native "return this.protocol;";
55
56 void set protocol(String value) native "this.protocol = value;";
57
58 String get rel() native "return this.rel;";
59
60 void set rel(String value) native "this.rel = value;";
61
62 String get rev() native "return this.rev;";
63
64 void set rev(String value) native "this.rev = value;";
65
66 String get search() native "return this.search;";
67
68 void set search(String value) native "this.search = value;";
69
70 String get shape() native "return this.shape;";
71
72 void set shape(String value) native "this.shape = value;";
73
74 String get target() native "return this.target;";
75
76 void set target(String value) native "this.target = value;";
77
78 String get text() native "return this.text;";
79
80 String get type() native "return this.type;";
81
82 void set type(String value) native "this.type = value;";
83 45
84 String toString() native; 46 String toString() native;
85 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698