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

Side by Side Diff: client/html/generated/src/wrapping/_ImageElementWrappingImplementation.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 // 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 // WARNING: Do not edit - generated code.
6
7 class ImageElementWrappingImplementation extends ElementWrappingImplementation i mplements ImageElement {
8 ImageElementWrappingImplementation._wrap(ptr) : super._wrap(ptr) {}
9
10 String get align() { return _ptr.align; }
11
12 void set align(String value) { _ptr.align = value; }
13
14 String get alt() { return _ptr.alt; }
15
16 void set alt(String value) { _ptr.alt = value; }
17
18 String get border() { return _ptr.border; }
19
20 void set border(String value) { _ptr.border = value; }
21
22 bool get complete() { return _ptr.complete; }
23
24 String get crossOrigin() { return _ptr.crossOrigin; }
25
26 void set crossOrigin(String value) { _ptr.crossOrigin = value; }
27
28 int get height() { return _ptr.height; }
29
30 void set height(int value) { _ptr.height = value; }
31
32 int get hspace() { return _ptr.hspace; }
33
34 void set hspace(int value) { _ptr.hspace = value; }
35
36 bool get isMap() { return _ptr.isMap; }
37
38 void set isMap(bool value) { _ptr.isMap = value; }
39
40 String get longDesc() { return _ptr.longDesc; }
41
42 void set longDesc(String value) { _ptr.longDesc = value; }
43
44 String get lowsrc() { return _ptr.lowsrc; }
45
46 void set lowsrc(String value) { _ptr.lowsrc = value; }
47
48 String get name() { return _ptr.name; }
49
50 void set name(String value) { _ptr.name = value; }
51
52 int get naturalHeight() { return _ptr.naturalHeight; }
53
54 int get naturalWidth() { return _ptr.naturalWidth; }
55
56 String get src() { return _ptr.src; }
57
58 void set src(String value) { _ptr.src = value; }
59
60 String get useMap() { return _ptr.useMap; }
61
62 void set useMap(String value) { _ptr.useMap = value; }
63
64 int get vspace() { return _ptr.vspace; }
65
66 void set vspace(int value) { _ptr.vspace = value; }
67
68 int get width() { return _ptr.width; }
69
70 void set width(int value) { _ptr.width = value; }
71
72 int get x() { return _ptr.x; }
73
74 int get y() { return _ptr.y; }
75 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698