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

Unified Diff: client/html/generated/html/dartium/Animation.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 10 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/html/generated/html/dartium/Animation.dart
diff --git a/client/html/generated/html/dartium/Animation.dart b/client/html/generated/html/dartium/Animation.dart
new file mode 100644
index 0000000000000000000000000000000000000000..2f0023e229de3f03cbd374ee1740c3d70bb560cf
--- /dev/null
+++ b/client/html/generated/html/dartium/Animation.dart
@@ -0,0 +1,34 @@
+
+class _AnimationImpl extends _DOMTypeBase implements Animation {
+ _AnimationImpl._wrap(ptr) : super._wrap(ptr);
+
+ num get delay() => _wrap(_ptr.delay);
+
+ int get direction() => _wrap(_ptr.direction);
+
+ num get duration() => _wrap(_ptr.duration);
+
+ num get elapsedTime() => _wrap(_ptr.elapsedTime);
+
+ void set elapsedTime(num value) { _ptr.elapsedTime = _unwrap(value); }
+
+ bool get ended() => _wrap(_ptr.ended);
+
+ int get fillMode() => _wrap(_ptr.fillMode);
+
+ int get iterationCount() => _wrap(_ptr.iterationCount);
+
+ String get name() => _wrap(_ptr.name);
+
+ bool get paused() => _wrap(_ptr.paused);
+
+ void pause() {
+ _ptr.pause();
+ return;
+ }
+
+ void play() {
+ _ptr.play();
+ return;
+ }
+}

Powered by Google App Engine
This is Rietveld 408576698