| OLD | NEW |
| (Empty) |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | |
| 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. | |
| 4 | |
| 5 // WARNING: Do not edit - generated code. | |
| 6 | |
| 7 interface TextTrack { | |
| 8 | |
| 9 static final int Disabled = 0; | |
| 10 | |
| 11 static final int Error = 3; | |
| 12 | |
| 13 static final int Hidden = 1; | |
| 14 | |
| 15 static final int Loaded = 2; | |
| 16 | |
| 17 static final int Loading = 1; | |
| 18 | |
| 19 static final int None = 0; | |
| 20 | |
| 21 static final int Showing = 2; | |
| 22 | |
| 23 TextTrackCueList get activeCues(); | |
| 24 | |
| 25 TextTrackCueList get cues(); | |
| 26 | |
| 27 String get kind(); | |
| 28 | |
| 29 String get label(); | |
| 30 | |
| 31 String get language(); | |
| 32 | |
| 33 int get mode(); | |
| 34 | |
| 35 void set mode(int value); | |
| 36 | |
| 37 int get readyState(); | |
| 38 | |
| 39 void addCue(TextTrackCue cue); | |
| 40 | |
| 41 void removeCue(TextTrackCue cue); | |
| 42 } | |
| OLD | NEW |