OLD | NEW |
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
4 | 4 |
5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
6 | 6 |
7 interface HTMLMediaElement extends HTMLElement { | 7 interface HTMLMediaElement extends HTMLElement { |
8 | 8 |
9 static final int EOS_DECODE_ERR = 2; | 9 static final int EOS_DECODE_ERR = 2; |
10 | 10 |
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
97 final bool webkitHasClosedCaptions; | 97 final bool webkitHasClosedCaptions; |
98 | 98 |
99 final String webkitMediaSourceURL; | 99 final String webkitMediaSourceURL; |
100 | 100 |
101 bool webkitPreservesPitch; | 101 bool webkitPreservesPitch; |
102 | 102 |
103 final int webkitSourceState; | 103 final int webkitSourceState; |
104 | 104 |
105 final int webkitVideoDecodedByteCount; | 105 final int webkitVideoDecodedByteCount; |
106 | 106 |
107 TextTrack addTrack(String kind, [String label, String language]); | 107 TextTrack addTextTrack(String kind, [String label, String language]); |
108 | 108 |
109 String canPlayType(String type); | 109 String canPlayType(String type); |
110 | 110 |
111 void load(); | 111 void load(); |
112 | 112 |
113 void pause(); | 113 void pause(); |
114 | 114 |
115 void play(); | 115 void play(); |
116 | 116 |
117 void webkitSourceAppend(Uint8Array data); | 117 void webkitSourceAppend(Uint8Array data); |
118 | 118 |
119 void webkitSourceEndOfStream(int status); | 119 void webkitSourceEndOfStream(int status); |
120 } | 120 } |
OLD | NEW |