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

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

Issue 8473008: Generate constants for IDL classes (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Add frog dom Created 9 years 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;
5
6 static final int Error = 3;
7
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;
17
4 TextTrackCueList activeCues; 18 TextTrackCueList activeCues;
5 19
6 TextTrackCueList cues; 20 TextTrackCueList cues;
7 21
8 String kind; 22 String kind;
9 23
10 String label; 24 String label;
11 25
12 String language; 26 String language;
13 27
14 int mode; 28 int mode;
15 29
16 int readyState; 30 int readyState;
17 31
18 void addCue(TextTrackCue cue) native; 32 void addCue(TextTrackCue cue) native;
19 33
20 void removeCue(TextTrackCue cue) native; 34 void removeCue(TextTrackCue cue) native;
21 35
22 var dartObjectLocalStorage; 36 var dartObjectLocalStorage;
23 37
24 String get typeName() native; 38 String get typeName() native;
25 } 39 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/StorageInfo.dart ('k') | client/dom/generated/src/frog/Uint16Array.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698