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

Unified Diff: client/dom/generated/src/frog/MediaController.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/MediaController.dart
diff --git a/client/dom/generated/src/frog/MediaController.dart b/client/dom/generated/src/frog/MediaController.dart
index 0d0e5fc15886703d3d9a82faac5f3bcfcd131018..9f110b89f7006bea12dabaaa47c0f8f44f40d6d7 100644
--- a/client/dom/generated/src/frog/MediaController.dart
+++ b/client/dom/generated/src/frog/MediaController.dart
@@ -1,25 +1,35 @@
class MediaController native "*MediaController" {
- TimeRanges buffered;
+ TimeRanges get buffered() native "return this.buffered;";
- num currentTime;
+ num get currentTime() native "return this.currentTime;";
- num defaultPlaybackRate;
+ void set currentTime(num value) native "this.currentTime = value;";
- num duration;
+ num get defaultPlaybackRate() native "return this.defaultPlaybackRate;";
- bool muted;
+ void set defaultPlaybackRate(num value) native "this.defaultPlaybackRate = value;";
- bool paused;
+ num get duration() native "return this.duration;";
- num playbackRate;
+ bool get muted() native "return this.muted;";
- TimeRanges played;
+ void set muted(bool value) native "this.muted = value;";
- TimeRanges seekable;
+ bool get paused() native "return this.paused;";
- num volume;
+ num get playbackRate() native "return this.playbackRate;";
+
+ void set playbackRate(num value) native "this.playbackRate = value;";
+
+ TimeRanges get played() native "return this.played;";
+
+ TimeRanges get seekable() native "return this.seekable;";
+
+ num get volume() native "return this.volume;";
+
+ void set volume(num value) native "this.volume = value;";
void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
« no previous file with comments | « client/dom/generated/src/frog/LowPass2FilterNode.dart ('k') | client/dom/generated/src/frog/MediaElementAudioSourceNode.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698