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

Unified Diff: client/dom/generated/src/frog/HTMLMediaElement.dart

Issue 9271031: Make DOMType the root of DOM implementation types. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: x 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/HTMLMediaElement.dart
diff --git a/client/dom/generated/src/frog/HTMLMediaElement.dart b/client/dom/generated/src/frog/HTMLMediaElement.dart
index c3780764aaea16e033bf1d099b13825ac2d28e62..92dea75a1f75092545ac65082d9514ec44d2f188 100644
--- a/client/dom/generated/src/frog/HTMLMediaElement.dart
+++ b/client/dom/generated/src/frog/HTMLMediaElement.dart
@@ -1,5 +1,5 @@
-class HTMLMediaElementJS extends HTMLElementJS implements HTMLMediaElement native "*HTMLMediaElement" {
+class HTMLMediaElementJs extends HTMLElementJs implements HTMLMediaElement native "*HTMLMediaElement" {
static final int EOS_DECODE_ERR = 2;
@@ -35,11 +35,11 @@ class HTMLMediaElementJS extends HTMLElementJS implements HTMLMediaElement nativ
void set autoplay(bool value) native "this.autoplay = value;";
- TimeRangesJS get buffered() native "return this.buffered;";
+ TimeRangesJs get buffered() native "return this.buffered;";
- MediaControllerJS get controller() native "return this.controller;";
+ MediaControllerJs get controller() native "return this.controller;";
- void set controller(MediaControllerJS value) native "this.controller = value;";
+ void set controller(MediaControllerJs value) native "this.controller = value;";
bool get controls() native "return this.controls;";
@@ -63,7 +63,7 @@ class HTMLMediaElementJS extends HTMLElementJS implements HTMLMediaElement nativ
bool get ended() native "return this.ended;";
- MediaErrorJS get error() native "return this.error;";
+ MediaErrorJs get error() native "return this.error;";
num get initialTime() native "return this.initialTime;";
@@ -87,7 +87,7 @@ class HTMLMediaElementJS extends HTMLElementJS implements HTMLMediaElement nativ
void set playbackRate(num value) native "this.playbackRate = value;";
- TimeRangesJS get played() native "return this.played;";
+ TimeRangesJs get played() native "return this.played;";
String get preload() native "return this.preload;";
@@ -95,7 +95,7 @@ class HTMLMediaElementJS extends HTMLElementJS implements HTMLMediaElement nativ
int get readyState() native "return this.readyState;";
- TimeRangesJS get seekable() native "return this.seekable;";
+ TimeRangesJs get seekable() native "return this.seekable;";
bool get seeking() native "return this.seeking;";
@@ -105,7 +105,7 @@ class HTMLMediaElementJS extends HTMLElementJS implements HTMLMediaElement nativ
num get startTime() native "return this.startTime;";
- TextTrackListJS get textTracks() native "return this.textTracks;";
+ TextTrackListJs get textTracks() native "return this.textTracks;";
num get volume() native "return this.volume;";
@@ -129,7 +129,7 @@ class HTMLMediaElementJS extends HTMLElementJS implements HTMLMediaElement nativ
int get webkitVideoDecodedByteCount() native "return this.webkitVideoDecodedByteCount;";
- TextTrackJS addTrack(String kind, [String label = null, String language = null]) native;
+ TextTrackJs addTrack(String kind, [String label = null, String language = null]) native;
String canPlayType(String type) native;
@@ -139,7 +139,7 @@ class HTMLMediaElementJS extends HTMLElementJS implements HTMLMediaElement nativ
void play() native;
- void webkitSourceAppend(Uint8ArrayJS data) native;
+ void webkitSourceAppend(Uint8ArrayJs data) native;
void webkitSourceEndOfStream(int status) native;
}
« no previous file with comments | « client/dom/generated/src/frog/HTMLMarqueeElement.dart ('k') | client/dom/generated/src/frog/HTMLMenuElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698