OLD | NEW |
1 | 1 |
2 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat
ive "*HTMLMediaElement" { | 2 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat
ive "*HTMLMediaElement" { |
3 | 3 |
4 static final int EOS_DECODE_ERR = 2; | 4 static final int EOS_DECODE_ERR = 2; |
5 | 5 |
6 static final int EOS_NETWORK_ERR = 1; | 6 static final int EOS_NETWORK_ERR = 1; |
7 | 7 |
8 static final int EOS_NO_ERROR = 0; | 8 static final int EOS_NO_ERROR = 0; |
9 | 9 |
10 static final int HAVE_CURRENT_DATA = 2; | 10 static final int HAVE_CURRENT_DATA = 2; |
(...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
92 final bool webkitHasClosedCaptions; | 92 final bool webkitHasClosedCaptions; |
93 | 93 |
94 final String webkitMediaSourceURL; | 94 final String webkitMediaSourceURL; |
95 | 95 |
96 bool webkitPreservesPitch; | 96 bool webkitPreservesPitch; |
97 | 97 |
98 final int webkitSourceState; | 98 final int webkitSourceState; |
99 | 99 |
100 final int webkitVideoDecodedByteCount; | 100 final int webkitVideoDecodedByteCount; |
101 | 101 |
102 _TextTrackJs addTrack(String kind, [String label = null, String language = nul
l]) native; | 102 _TextTrackJs addTextTrack(String kind, [String label = null, String language =
null]) native; |
103 | 103 |
104 String canPlayType(String type) native; | 104 String canPlayType(String type) native; |
105 | 105 |
106 void load() native; | 106 void load() native; |
107 | 107 |
108 void pause() native; | 108 void pause() native; |
109 | 109 |
110 void play() native; | 110 void play() native; |
111 | 111 |
112 void webkitSourceAppend(_Uint8ArrayJs data) native; | 112 void webkitSourceAppend(_Uint8ArrayJs data) native; |
113 | 113 |
114 void webkitSourceEndOfStream(int status) native; | 114 void webkitSourceEndOfStream(int status) native; |
115 } | 115 } |
OLD | NEW |