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

Side by Side Diff: client/dom/generated/src/frog/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 1
2 class TextTrack native "*TextTrack" { 2 class TextTrack native "*TextTrack" {
3 3
4 static final int Disabled = 0; 4 static final int DISABLED = 0;
5 5
6 static final int Error = 3; 6 static final int HIDDEN = 1;
7 7
8 static final int Hidden = 1; 8 static final int SHOWING = 2;
9
10 static final int Loaded = 2;
11
12 static final int Loading = 1;
13
14 static final int None = 0;
15
16 static final int Showing = 2;
17 9
18 TextTrackCueList activeCues; 10 TextTrackCueList activeCues;
19 11
20 TextTrackCueList cues; 12 TextTrackCueList cues;
21 13
22 String kind; 14 String kind;
23 15
24 String label; 16 String label;
25 17
26 String language; 18 String language;
27 19
28 int mode; 20 int mode;
29 21
30 int readyState; 22 EventListener oncuechange;
31 23
32 void addCue(TextTrackCue cue) native; 24 void addCue(TextTrackCue cue) native;
33 25
26 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
27
28 bool dispatchEvent(Event evt) native;
29
34 void removeCue(TextTrackCue cue) native; 30 void removeCue(TextTrackCue cue) native;
35 31
32 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
33
36 var dartObjectLocalStorage; 34 var dartObjectLocalStorage;
37 35
38 String get typeName() native; 36 String get typeName() native;
39 } 37 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/ProgressEvent.dart ('k') | client/dom/generated/src/frog/TextTrackCue.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698