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

Side by Side Diff: client/dom/generated/src/frog/HTMLImageElement.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 _HTMLImageElementJs extends _HTMLElementJs implements HTMLImageElement nat ive "*HTMLImageElement" { 2 class _HTMLImageElementJs extends _HTMLElementJs implements HTMLImageElement nat ive "*HTMLImageElement" {
3 3
4 String get align() native "return this.align;"; 4 String align;
5 5
6 void set align(String value) native "this.align = value;"; 6 String alt;
7 7
8 String get alt() native "return this.alt;"; 8 String border;
9 9
10 void set alt(String value) native "this.alt = value;"; 10 final bool complete;
11 11
12 String get border() native "return this.border;"; 12 String crossOrigin;
13 13
14 void set border(String value) native "this.border = value;"; 14 int height;
15 15
16 bool get complete() native "return this.complete;"; 16 int hspace;
17 17
18 String get crossOrigin() native "return this.crossOrigin;"; 18 bool isMap;
19 19
20 void set crossOrigin(String value) native "this.crossOrigin = value;"; 20 String longDesc;
21 21
22 int get height() native "return this.height;"; 22 String lowsrc;
23 23
24 void set height(int value) native "this.height = value;"; 24 String name;
25 25
26 int get hspace() native "return this.hspace;"; 26 final int naturalHeight;
27 27
28 void set hspace(int value) native "this.hspace = value;"; 28 final int naturalWidth;
29 29
30 bool get isMap() native "return this.isMap;"; 30 String src;
31 31
32 void set isMap(bool value) native "this.isMap = value;"; 32 String useMap;
33 33
34 String get longDesc() native "return this.longDesc;"; 34 int vspace;
35 35
36 void set longDesc(String value) native "this.longDesc = value;"; 36 int width;
37 37
38 String get lowsrc() native "return this.lowsrc;"; 38 final int x;
39 39
40 void set lowsrc(String value) native "this.lowsrc = value;"; 40 final int y;
41
42 String get name() native "return this.name;";
43
44 void set name(String value) native "this.name = value;";
45
46 int get naturalHeight() native "return this.naturalHeight;";
47
48 int get naturalWidth() native "return this.naturalWidth;";
49
50 String get src() native "return this.src;";
51
52 void set src(String value) native "this.src = value;";
53
54 String get useMap() native "return this.useMap;";
55
56 void set useMap(String value) native "this.useMap = value;";
57
58 int get vspace() native "return this.vspace;";
59
60 void set vspace(int value) native "this.vspace = value;";
61
62 int get width() native "return this.width;";
63
64 void set width(int value) native "this.width = value;";
65
66 int get x() native "return this.x;";
67
68 int get y() native "return this.y;";
69 } 41 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698