OLD | NEW |
(Empty) | |
| 1 |
| 2 class _MediaStreamImpl implements MediaStream native "*MediaStream" { |
| 3 |
| 4 static final int ENDED = 2; |
| 5 |
| 6 static final int LIVE = 1; |
| 7 |
| 8 final _MediaStreamTrackListImpl audioTracks; |
| 9 |
| 10 final String label; |
| 11 |
| 12 EventListener onended; |
| 13 |
| 14 final int readyState; |
| 15 |
| 16 final _MediaStreamTrackListImpl videoTracks; |
| 17 |
| 18 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 19 |
| 20 bool dispatchEvent(_EventImpl event) native; |
| 21 |
| 22 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 23 } |
OLD | NEW |