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

Unified 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, 11 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 side-by-side diff with in-line comments
Download patch
Index: client/dom/generated/src/frog/HTMLMarqueeElement.dart
diff --git a/client/dom/generated/src/frog/HTMLMarqueeElement.dart b/client/dom/generated/src/frog/HTMLMarqueeElement.dart
index 8d0fb9782c84fbc0f493556750d6e8e2553cf69c..913feb2a86fe2ad43aff86c426daf2768cf81bcb 100644
--- a/client/dom/generated/src/frog/HTMLMarqueeElement.dart
+++ b/client/dom/generated/src/frog/HTMLMarqueeElement.dart
@@ -1,49 +1,27 @@
class _HTMLMarqueeElementJs extends _HTMLElementJs implements HTMLMarqueeElement native "*HTMLMarqueeElement" {
- String get behavior() native "return this.behavior;";
+ String behavior;
- void set behavior(String value) native "this.behavior = value;";
+ String bgColor;
- String get bgColor() native "return this.bgColor;";
+ String direction;
- void set bgColor(String value) native "this.bgColor = value;";
+ String height;
- String get direction() native "return this.direction;";
+ int hspace;
- void set direction(String value) native "this.direction = value;";
+ int loop;
- String get height() native "return this.height;";
+ int scrollAmount;
- void set height(String value) native "this.height = value;";
+ int scrollDelay;
- int get hspace() native "return this.hspace;";
+ bool trueSpeed;
- void set hspace(int value) native "this.hspace = value;";
+ int vspace;
- int get loop() native "return this.loop;";
-
- void set loop(int value) native "this.loop = value;";
-
- int get scrollAmount() native "return this.scrollAmount;";
-
- void set scrollAmount(int value) native "this.scrollAmount = value;";
-
- int get scrollDelay() native "return this.scrollDelay;";
-
- void set scrollDelay(int value) native "this.scrollDelay = value;";
-
- bool get trueSpeed() native "return this.trueSpeed;";
-
- void set trueSpeed(bool value) native "this.trueSpeed = value;";
-
- int get vspace() native "return this.vspace;";
-
- void set vspace(int value) native "this.vspace = value;";
-
- String get width() native "return this.width;";
-
- void set width(String value) native "this.width = value;";
+ String width;
void start() native;

Powered by Google App Engine
This is Rietveld 408576698