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

Side by Side Diff: client/dom/generated/src/wrapping/_WebKitAnimationWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 class _WebKitAnimationWrappingImplementation extends DOMWrapperBase implements W ebKitAnimation { 7 class _WebKitAnimationWrappingImplementation extends DOMWrapperBase implements W ebKitAnimation {
8 _WebKitAnimationWrappingImplementation() : super() {} 8 _WebKitAnimationWrappingImplementation() : super() {}
9 9
10 static create__WebKitAnimationWrappingImplementation() native { 10 static create__WebKitAnimationWrappingImplementation() native {
11 return new _WebKitAnimationWrappingImplementation(); 11 return new _WebKitAnimationWrappingImplementation();
12 } 12 }
13 13
14 num get delay() { return _get__WebKitAnimation_delay(this); } 14 num get delay() { return _get_delay(this); }
15 static num _get__WebKitAnimation_delay(var _this) native; 15 static num _get_delay(var _this) native;
16 16
17 int get direction() { return _get__WebKitAnimation_direction(this); } 17 int get direction() { return _get_direction(this); }
18 static int _get__WebKitAnimation_direction(var _this) native; 18 static int _get_direction(var _this) native;
19 19
20 num get duration() { return _get__WebKitAnimation_duration(this); } 20 num get duration() { return _get_duration(this); }
21 static num _get__WebKitAnimation_duration(var _this) native; 21 static num _get_duration(var _this) native;
22 22
23 num get elapsedTime() { return _get__WebKitAnimation_elapsedTime(this); } 23 num get elapsedTime() { return _get_elapsedTime(this); }
24 static num _get__WebKitAnimation_elapsedTime(var _this) native; 24 static num _get_elapsedTime(var _this) native;
25 25
26 void set elapsedTime(num value) { _set__WebKitAnimation_elapsedTime(this, valu e); } 26 void set elapsedTime(num value) { _set_elapsedTime(this, value); }
27 static void _set__WebKitAnimation_elapsedTime(var _this, num value) native; 27 static void _set_elapsedTime(var _this, num value) native;
28 28
29 bool get ended() { return _get__WebKitAnimation_ended(this); } 29 bool get ended() { return _get_ended(this); }
30 static bool _get__WebKitAnimation_ended(var _this) native; 30 static bool _get_ended(var _this) native;
31 31
32 int get fillMode() { return _get__WebKitAnimation_fillMode(this); } 32 int get fillMode() { return _get_fillMode(this); }
33 static int _get__WebKitAnimation_fillMode(var _this) native; 33 static int _get_fillMode(var _this) native;
34 34
35 int get iterationCount() { return _get__WebKitAnimation_iterationCount(this); } 35 int get iterationCount() { return _get_iterationCount(this); }
36 static int _get__WebKitAnimation_iterationCount(var _this) native; 36 static int _get_iterationCount(var _this) native;
37 37
38 String get name() { return _get__WebKitAnimation_name(this); } 38 String get name() { return _get_name(this); }
39 static String _get__WebKitAnimation_name(var _this) native; 39 static String _get_name(var _this) native;
40 40
41 bool get paused() { return _get__WebKitAnimation_paused(this); } 41 bool get paused() { return _get_paused(this); }
42 static bool _get__WebKitAnimation_paused(var _this) native; 42 static bool _get_paused(var _this) native;
43 43
44 void pause() { 44 void pause() {
45 _pause(this); 45 _pause(this);
46 return; 46 return;
47 } 47 }
48 static void _pause(receiver) native; 48 static void _pause(receiver) native;
49 49
50 void play() { 50 void play() {
51 _play(this); 51 _play(this);
52 return; 52 return;
53 } 53 }
54 static void _play(receiver) native; 54 static void _play(receiver) native;
55 55
56 String get typeName() { return "WebKitAnimation"; } 56 String get typeName() { return "WebKitAnimation"; }
57 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698