Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(164)

Side by Side Diff: client/dom/generated/src/interface/TextTrack.dart

Issue 9084005: Refresh dart:dom (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 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 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 TextTrack { 7 interface TextTrack {
8 8
9 static final int Disabled = 0; 9 static final int DISABLED = 0;
10 10
11 static final int Error = 3; 11 static final int HIDDEN = 1;
12 12
13 static final int Hidden = 1; 13 static final int SHOWING = 2;
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 14
23 TextTrackCueList get activeCues(); 15 TextTrackCueList get activeCues();
24 16
25 TextTrackCueList get cues(); 17 TextTrackCueList get cues();
26 18
27 String get kind(); 19 String get kind();
28 20
29 String get label(); 21 String get label();
30 22
31 String get language(); 23 String get language();
32 24
33 int get mode(); 25 int get mode();
34 26
35 void set mode(int value); 27 void set mode(int value);
36 28
37 int get readyState(); 29 EventListener get oncuechange();
30
31 void set oncuechange(EventListener value);
38 32
39 void addCue(TextTrackCue cue); 33 void addCue(TextTrackCue cue);
40 34
35 void addEventListener(String type, EventListener listener, [bool useCapture]);
36
37 bool dispatchEvent(Event evt);
38
41 void removeCue(TextTrackCue cue); 39 void removeCue(TextTrackCue cue);
40
41 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
42 } 42 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/ProgressEvent.dart ('k') | client/dom/generated/src/interface/TextTrackCue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698