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

Side by Side Diff: client/html/src/ObjectElementWrappingImplementation.dart

Issue 9655009: Remove files that have already been ported or do not need to be ported. (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
« no previous file with comments | « client/html/src/ObjectElement.dart ('k') | client/html/src/WebSocket.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 class ObjectElementWrappingImplementation extends ElementWrappingImplementation implements ObjectElement {
6 ObjectElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
7
8 String get align() { return _ptr.align; }
9
10 void set align(String value) { _ptr.align = value; }
11
12 String get archive() { return _ptr.archive; }
13
14 void set archive(String value) { _ptr.archive = value; }
15
16 String get border() { return _ptr.border; }
17
18 void set border(String value) { _ptr.border = value; }
19
20 String get code() { return _ptr.code; }
21
22 void set code(String value) { _ptr.code = value; }
23
24 String get codeBase() { return _ptr.codeBase; }
25
26 void set codeBase(String value) { _ptr.codeBase = value; }
27
28 String get codeType() { return _ptr.codeType; }
29
30 void set codeType(String value) { _ptr.codeType = value; }
31
32 Document get contentDocument() { return LevelDom.wrapDocument(_ptr.contentDocu ment); }
33
34 String get data() { return _ptr.data; }
35
36 void set data(String value) { _ptr.data = value; }
37
38 bool get declare() { return _ptr.declare; }
39
40 void set declare(bool value) { _ptr.declare = value; }
41
42 FormElement get form() { return LevelDom.wrapFormElement(_ptr.form); }
43
44 String get height() { return _ptr.height; }
45
46 void set height(String value) { _ptr.height = value; }
47
48 int get hspace() { return _ptr.hspace; }
49
50 void set hspace(int value) { _ptr.hspace = value; }
51
52 String get name() { return _ptr.name; }
53
54 void set name(String value) { _ptr.name = value; }
55
56 String get standby() { return _ptr.standby; }
57
58 void set standby(String value) { _ptr.standby = value; }
59
60 String get type() { return _ptr.type; }
61
62 void set type(String value) { _ptr.type = value; }
63
64 String get useMap() { return _ptr.useMap; }
65
66 void set useMap(String value) { _ptr.useMap = value; }
67
68 String get validationMessage() { return _ptr.validationMessage; }
69
70 ValidityState get validity() { return LevelDom.wrapValidityState(_ptr.validity ); }
71
72 int get vspace() { return _ptr.vspace; }
73
74 void set vspace(int value) { _ptr.vspace = value; }
75
76 String get width() { return _ptr.width; }
77
78 void set width(String value) { _ptr.width = value; }
79
80 bool get willValidate() { return _ptr.willValidate; }
81
82 bool checkValidity() {
83 return _ptr.checkValidity();
84 }
85
86 void setCustomValidity(String error) {
87 _ptr.setCustomValidity(error);
88 return;
89 }
90 }
OLDNEW
« no previous file with comments | « client/html/src/ObjectElement.dart ('k') | client/html/src/WebSocket.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698