| Index: client/dom/generated/src/interface/TextTrack.dart
|
| diff --git a/client/dom/generated/src/interface/TextTrack.dart b/client/dom/generated/src/interface/TextTrack.dart
|
| index 66b7ed881a967404bc10e1291bf7c05dd8d9649e..f885e52f705a280acd1e28ae73c9acd076a2f9ec 100644
|
| --- a/client/dom/generated/src/interface/TextTrack.dart
|
| +++ b/client/dom/generated/src/interface/TextTrack.dart
|
| @@ -6,19 +6,11 @@
|
|
|
| interface TextTrack {
|
|
|
| - static final int Disabled = 0;
|
| + static final int DISABLED = 0;
|
|
|
| - static final int Error = 3;
|
| + static final int HIDDEN = 1;
|
|
|
| - static final int Hidden = 1;
|
| -
|
| - static final int Loaded = 2;
|
| -
|
| - static final int Loading = 1;
|
| -
|
| - static final int None = 0;
|
| -
|
| - static final int Showing = 2;
|
| + static final int SHOWING = 2;
|
|
|
| TextTrackCueList get activeCues();
|
|
|
| @@ -34,9 +26,17 @@ interface TextTrack {
|
|
|
| void set mode(int value);
|
|
|
| - int get readyState();
|
| + EventListener get oncuechange();
|
| +
|
| + void set oncuechange(EventListener value);
|
|
|
| void addCue(TextTrackCue cue);
|
|
|
| + void addEventListener(String type, EventListener listener, [bool useCapture]);
|
| +
|
| + bool dispatchEvent(Event evt);
|
| +
|
| void removeCue(TextTrackCue cue);
|
| +
|
| + void removeEventListener(String type, EventListener listener, [bool useCapture]);
|
| }
|
|
|