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

Side by Side Diff: client/html/generated/html/dartium/MarqueeElement.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 _MarqueeElementImpl extends _ElementImpl implements MarqueeElement {
3 _MarqueeElementImpl._wrap(ptr) : super._wrap(ptr);
4
5 String get behavior() => _wrap(_ptr.behavior);
6
7 void set behavior(String value) { _ptr.behavior = _unwrap(value); }
8
9 String get bgColor() => _wrap(_ptr.bgColor);
10
11 void set bgColor(String value) { _ptr.bgColor = _unwrap(value); }
12
13 String get direction() => _wrap(_ptr.direction);
14
15 void set direction(String value) { _ptr.direction = _unwrap(value); }
16
17 String get height() => _wrap(_ptr.height);
18
19 void set height(String value) { _ptr.height = _unwrap(value); }
20
21 int get hspace() => _wrap(_ptr.hspace);
22
23 void set hspace(int value) { _ptr.hspace = _unwrap(value); }
24
25 int get loop() => _wrap(_ptr.loop);
26
27 void set loop(int value) { _ptr.loop = _unwrap(value); }
28
29 int get scrollAmount() => _wrap(_ptr.scrollAmount);
30
31 void set scrollAmount(int value) { _ptr.scrollAmount = _unwrap(value); }
32
33 int get scrollDelay() => _wrap(_ptr.scrollDelay);
34
35 void set scrollDelay(int value) { _ptr.scrollDelay = _unwrap(value); }
36
37 bool get trueSpeed() => _wrap(_ptr.trueSpeed);
38
39 void set trueSpeed(bool value) { _ptr.trueSpeed = _unwrap(value); }
40
41 int get vspace() => _wrap(_ptr.vspace);
42
43 void set vspace(int value) { _ptr.vspace = _unwrap(value); }
44
45 String get width() => _wrap(_ptr.width);
46
47 void set width(String value) { _ptr.width = _unwrap(value); }
48
49 void start() {
50 _ptr.start();
51 return;
52 }
53
54 void stop() {
55 _ptr.stop();
56 return;
57 }
58 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698