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

Side by Side Diff: client/dom/generated/src/frog/HTMLMarqueeElement.dart

Issue 9312003: Use fields in hidden native DOM classes instead of getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Also fix native 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 _HTMLMarqueeElementJs extends _HTMLElementJs implements HTMLMarqueeElement native "*HTMLMarqueeElement" { 2 class _HTMLMarqueeElementJs extends _HTMLElementJs implements HTMLMarqueeElement native "*HTMLMarqueeElement" {
3 3
4 String get behavior() native "return this.behavior;"; 4 String behavior;
5 5
6 void set behavior(String value) native "this.behavior = value;"; 6 String bgColor;
7 7
8 String get bgColor() native "return this.bgColor;"; 8 String direction;
9 9
10 void set bgColor(String value) native "this.bgColor = value;"; 10 String height;
11 11
12 String get direction() native "return this.direction;"; 12 int hspace;
13 13
14 void set direction(String value) native "this.direction = value;"; 14 int loop;
15 15
16 String get height() native "return this.height;"; 16 int scrollAmount;
17 17
18 void set height(String value) native "this.height = value;"; 18 int scrollDelay;
19 19
20 int get hspace() native "return this.hspace;"; 20 bool trueSpeed;
21 21
22 void set hspace(int value) native "this.hspace = value;"; 22 int vspace;
23 23
24 int get loop() native "return this.loop;"; 24 String width;
25
26 void set loop(int value) native "this.loop = value;";
27
28 int get scrollAmount() native "return this.scrollAmount;";
29
30 void set scrollAmount(int value) native "this.scrollAmount = value;";
31
32 int get scrollDelay() native "return this.scrollDelay;";
33
34 void set scrollDelay(int value) native "this.scrollDelay = value;";
35
36 bool get trueSpeed() native "return this.trueSpeed;";
37
38 void set trueSpeed(bool value) native "this.trueSpeed = value;";
39
40 int get vspace() native "return this.vspace;";
41
42 void set vspace(int value) native "this.vspace = value;";
43
44 String get width() native "return this.width;";
45
46 void set width(String value) native "this.width = value;";
47 25
48 void start() native; 26 void start() native;
49 27
50 void stop() native; 28 void stop() native;
51 } 29 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698