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

Unified Diff: client/dom/generated/src/wrapping/_HTMLMediaElementWrappingImplementation.dart

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues Created 8 years, 12 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/wrapping/_HTMLMediaElementWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_HTMLMediaElementWrappingImplementation.dart b/client/dom/generated/src/wrapping/_HTMLMediaElementWrappingImplementation.dart
index 4b24b4a6019b394f075343d44ff575c33e0227ca..3b42c3c41e687cc57e13a33f7ac0db41fafea1ac 100644
--- a/client/dom/generated/src/wrapping/_HTMLMediaElementWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_HTMLMediaElementWrappingImplementation.dart
@@ -20,6 +20,12 @@ class _HTMLMediaElementWrappingImplementation extends _HTMLElementWrappingImplem
TimeRanges get buffered() { return _get_buffered(this); }
static TimeRanges _get_buffered(var _this) native;
+ MediaController get controller() { return _get_controller(this); }
+ static MediaController _get_controller(var _this) native;
+
+ void set controller(MediaController value) { _set_controller(this, value); }
+ static void _set_controller(var _this, MediaController value) native;
+
bool get controls() { return _get_controls(this); }
static bool _get_controls(var _this) native;
@@ -65,6 +71,12 @@ class _HTMLMediaElementWrappingImplementation extends _HTMLElementWrappingImplem
void set loop(bool value) { _set_loop(this, value); }
static void _set_loop(var _this, bool value) native;
+ String get mediaGroup() { return _get_mediaGroup(this); }
+ static String _get_mediaGroup(var _this) native;
+
+ void set mediaGroup(String value) { _set_mediaGroup(this, value); }
+ static void _set_mediaGroup(var _this, String value) native;
+
bool get muted() { return _get_muted(this); }
static bool _get_muted(var _this) native;
@@ -110,6 +122,9 @@ class _HTMLMediaElementWrappingImplementation extends _HTMLElementWrappingImplem
num get startTime() { return _get_startTime(this); }
static num _get_startTime(var _this) native;
+ TextTrackList get textTracks() { return _get_textTracks(this); }
+ static TextTrackList _get_textTracks(var _this) native;
+
num get volume() { return _get_volume(this); }
static num _get_volume(var _this) native;

Powered by Google App Engine
This is Rietveld 408576698