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

Unified Diff: client/dom/generated/src/frog/WebKitAnimation.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/WebKitAnimation.dart
diff --git a/client/dom/generated/src/frog/WebKitAnimation.dart b/client/dom/generated/src/frog/WebKitAnimation.dart
index ad5458d8a50c6bf8fbf79c35dfa36879cc419484..5bed9333402284c0cf9c6be4681f64cdf6d36394 100644
--- a/client/dom/generated/src/frog/WebKitAnimation.dart
+++ b/client/dom/generated/src/frog/WebKitAnimation.dart
@@ -13,25 +13,23 @@ class _WebKitAnimationJs extends _DOMTypeJs implements WebKitAnimation native "*
static final int FILL_NONE = 0;
- num get delay() native "return this.delay;";
+ final num delay;
- int get direction() native "return this.direction;";
+ final int direction;
- num get duration() native "return this.duration;";
+ final num duration;
- num get elapsedTime() native "return this.elapsedTime;";
+ num elapsedTime;
- void set elapsedTime(num value) native "this.elapsedTime = value;";
+ final bool ended;
- bool get ended() native "return this.ended;";
+ final int fillMode;
- int get fillMode() native "return this.fillMode;";
+ final int iterationCount;
- int get iterationCount() native "return this.iterationCount;";
+ final String name;
- String get name() native "return this.name;";
-
- bool get paused() native "return this.paused;";
+ final bool paused;
void pause() native;

Powered by Google App Engine
This is Rietveld 408576698