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

Side by Side Diff: client/dom/generated/src/frog/HTMLObjectElement.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 _HTMLObjectElementJs extends _HTMLElementJs implements HTMLObjectElement n ative "*HTMLObjectElement" { 2 class _HTMLObjectElementJs extends _HTMLElementJs implements HTMLObjectElement n ative "*HTMLObjectElement" {
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 archive;
7 7
8 String get archive() native "return this.archive;"; 8 String border;
9 9
10 void set archive(String value) native "this.archive = value;"; 10 String code;
11 11
12 String get border() native "return this.border;"; 12 String codeBase;
13 13
14 void set border(String value) native "this.border = value;"; 14 String codeType;
15 15
16 String get code() native "return this.code;"; 16 final _DocumentJs contentDocument;
17 17
18 void set code(String value) native "this.code = value;"; 18 String data;
19 19
20 String get codeBase() native "return this.codeBase;"; 20 bool declare;
21 21
22 void set codeBase(String value) native "this.codeBase = value;"; 22 final _HTMLFormElementJs form;
23 23
24 String get codeType() native "return this.codeType;"; 24 String height;
25 25
26 void set codeType(String value) native "this.codeType = value;"; 26 int hspace;
27 27
28 _DocumentJs get contentDocument() native "return this.contentDocument;"; 28 String name;
29 29
30 String get data() native "return this.data;"; 30 String standby;
31 31
32 void set data(String value) native "this.data = value;"; 32 String type;
33 33
34 bool get declare() native "return this.declare;"; 34 String useMap;
35 35
36 void set declare(bool value) native "this.declare = value;"; 36 final String validationMessage;
37 37
38 _HTMLFormElementJs get form() native "return this.form;"; 38 final _ValidityStateJs validity;
39 39
40 String get height() native "return this.height;"; 40 int vspace;
41 41
42 void set height(String value) native "this.height = value;"; 42 String width;
43 43
44 int get hspace() native "return this.hspace;"; 44 final bool willValidate;
45
46 void set hspace(int value) native "this.hspace = value;";
47
48 String get name() native "return this.name;";
49
50 void set name(String value) native "this.name = value;";
51
52 String get standby() native "return this.standby;";
53
54 void set standby(String value) native "this.standby = value;";
55
56 String get type() native "return this.type;";
57
58 void set type(String value) native "this.type = value;";
59
60 String get useMap() native "return this.useMap;";
61
62 void set useMap(String value) native "this.useMap = value;";
63
64 String get validationMessage() native "return this.validationMessage;";
65
66 _ValidityStateJs get validity() native "return this.validity;";
67
68 int get vspace() native "return this.vspace;";
69
70 void set vspace(int value) native "this.vspace = value;";
71
72 String get width() native "return this.width;";
73
74 void set width(String value) native "this.width = value;";
75
76 bool get willValidate() native "return this.willValidate;";
77 45
78 bool checkValidity() native; 46 bool checkValidity() native;
79 47
80 _SVGDocumentJs getSVGDocument() native; 48 _SVGDocumentJs getSVGDocument() native;
81 49
82 void setCustomValidity(String error) native; 50 void setCustomValidity(String error) native;
83 } 51 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698