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

Unified Diff: client/dom/generated/src/frog/WebKitAnimation.dart

Issue 9221006: Move frog dart:dom from fields to getters/setters. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: comment 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 bc5e79c7861488a2b1eaeb32a41b4bbed61576bd..35c646816d64cc2b40195e084d5c6ce87fc564c1 100644
--- a/client/dom/generated/src/frog/WebKitAnimation.dart
+++ b/client/dom/generated/src/frog/WebKitAnimation.dart
@@ -13,23 +13,25 @@ class WebKitAnimation native "*WebKitAnimation" {
static final int FILL_NONE = 0;
- num delay;
+ num get delay() native "return this.delay;";
- int direction;
+ int get direction() native "return this.direction;";
- num duration;
+ num get duration() native "return this.duration;";
- num elapsedTime;
+ num get elapsedTime() native "return this.elapsedTime;";
- bool ended;
+ void set elapsedTime(num value) native "this.elapsedTime = value;";
- int fillMode;
+ bool get ended() native "return this.ended;";
- int iterationCount;
+ int get fillMode() native "return this.fillMode;";
- String name;
+ int get iterationCount() native "return this.iterationCount;";
- bool paused;
+ String get name() native "return this.name;";
+
+ bool get paused() native "return this.paused;";
void pause() native;
« no previous file with comments | « client/dom/generated/src/frog/WebGLRenderingContext.dart ('k') | client/dom/generated/src/frog/WebKitAnimationEvent.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698