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

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

Issue 9103001: Revert "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 HIDDEN = 1; 6 static final int Error = 3;
7 7
8 static final int SHOWING = 2; 8 static final int Hidden = 1;
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;
9 17
10 TextTrackCueList activeCues; 18 TextTrackCueList activeCues;
11 19
12 TextTrackCueList cues; 20 TextTrackCueList cues;
13 21
14 String kind; 22 String kind;
15 23
16 String label; 24 String label;
17 25
18 String language; 26 String language;
19 27
20 int mode; 28 int mode;
21 29
22 EventListener oncuechange; 30 int readyState;
23 31
24 void addCue(TextTrackCue cue) native; 32 void addCue(TextTrackCue cue) native;
25 33
26 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
27
28 bool dispatchEvent(Event evt) native;
29
30 void removeCue(TextTrackCue cue) native; 34 void removeCue(TextTrackCue cue) native;
31 35
32 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
33
34 var dartObjectLocalStorage; 36 var dartObjectLocalStorage;
35 37
36 String get typeName() native; 38 String get typeName() native;
37 } 39 }
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