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

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

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years 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 WebKitAnimation native "*WebKitAnimation" { 2 class WebKitAnimation native "*WebKitAnimation" {
3 3
4 static final int DIRECTION_ALTERNATE = 1;
5
6 static final int DIRECTION_NORMAL = 0;
7
8 static final int FILL_BACKWARDS = 1;
9
10 static final int FILL_BOTH = 3;
11
12 static final int FILL_FORWARDS = 2;
13
14 static final int FILL_NONE = 0;
15
4 num delay; 16 num delay;
5 17
6 int direction; 18 int direction;
7 19
8 num duration; 20 num duration;
9 21
10 num elapsedTime; 22 num elapsedTime;
11 23
12 bool ended; 24 bool ended;
13 25
14 int fillMode; 26 int fillMode;
15 27
16 int iterationCount; 28 int iterationCount;
17 29
18 String name; 30 String name;
19 31
20 bool paused; 32 bool paused;
21 33
22 void pause() native; 34 void pause() native;
23 35
24 void play() native; 36 void play() native;
25 37
26 var dartObjectLocalStorage; 38 var dartObjectLocalStorage;
27 39
28 String get typeName() native; 40 String get typeName() native;
29 } 41 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WebGLRenderingContext.dart ('k') | client/dom/generated/src/frog/WebKitCSSFilterValue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698