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

Side by Side Diff: client/html/generated/html/dartium/ObjectElement.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _ObjectElementImpl extends _ElementImpl implements ObjectElement {
3 _ObjectElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 String get align() => _wrap(_ptr.align);
6
7 void set align(String value) { _ptr.align = _unwrap(value); }
8
9 String get archive() => _wrap(_ptr.archive);
10
11 void set archive(String value) { _ptr.archive = _unwrap(value); }
12
13 String get border() => _wrap(_ptr.border);
14
15 void set border(String value) { _ptr.border = _unwrap(value); }
16
17 String get code() => _wrap(_ptr.code);
18
19 void set code(String value) { _ptr.code = _unwrap(value); }
20
21 String get codeBase() => _wrap(_ptr.codeBase);
22
23 void set codeBase(String value) { _ptr.codeBase = _unwrap(value); }
24
25 String get codeType() => _wrap(_ptr.codeType);
26
27 void set codeType(String value) { _ptr.codeType = _unwrap(value); }
28
29 Document get contentDocument() => _FixHtmlDocumentReference(_wrap(_ptr.content Document));
30
31 String get data() => _wrap(_ptr.data);
32
33 void set data(String value) { _ptr.data = _unwrap(value); }
34
35 bool get declare() => _wrap(_ptr.declare);
36
37 void set declare(bool value) { _ptr.declare = _unwrap(value); }
38
39 FormElement get form() => _wrap(_ptr.form);
40
41 String get height() => _wrap(_ptr.height);
42
43 void set height(String value) { _ptr.height = _unwrap(value); }
44
45 int get hspace() => _wrap(_ptr.hspace);
46
47 void set hspace(int value) { _ptr.hspace = _unwrap(value); }
48
49 String get name() => _wrap(_ptr.name);
50
51 void set name(String value) { _ptr.name = _unwrap(value); }
52
53 String get standby() => _wrap(_ptr.standby);
54
55 void set standby(String value) { _ptr.standby = _unwrap(value); }
56
57 String get type() => _wrap(_ptr.type);
58
59 void set type(String value) { _ptr.type = _unwrap(value); }
60
61 String get useMap() => _wrap(_ptr.useMap);
62
63 void set useMap(String value) { _ptr.useMap = _unwrap(value); }
64
65 String get validationMessage() => _wrap(_ptr.validationMessage);
66
67 ValidityState get validity() => _wrap(_ptr.validity);
68
69 int get vspace() => _wrap(_ptr.vspace);
70
71 void set vspace(int value) { _ptr.vspace = _unwrap(value); }
72
73 String get width() => _wrap(_ptr.width);
74
75 void set width(String value) { _ptr.width = _unwrap(value); }
76
77 bool get willValidate() => _wrap(_ptr.willValidate);
78
79 bool checkValidity() {
80 return _wrap(_ptr.checkValidity());
81 }
82
83 void setCustomValidity(String error) {
84 _ptr.setCustomValidity(_unwrap(error));
85 return;
86 }
87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698