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

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

Powered by Google App Engine
This is Rietveld 408576698