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

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

Issue 9106002: Revert "Revert "Refresh dart:dom"" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: fix dartc issues 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 TextTrackCue native "*TextTrackCue" { 2 class TextTrackCue native "*TextTrackCue" {
3 3
4 String alignment; 4 String alignment;
5 5
6 String direction; 6 String direction;
7 7
8 num endTime; 8 num endTime;
9 9
10 String id; 10 String id;
11 11
12 int linePosition; 12 int linePosition;
13 13
14 EventListener onenter;
15
16 EventListener onexit;
17
14 bool pauseOnExit; 18 bool pauseOnExit;
15 19
16 int size; 20 int size;
17 21
18 bool snapToLines; 22 bool snapToLines;
19 23
20 num startTime; 24 num startTime;
21 25
22 int textPosition; 26 int textPosition;
23 27
24 TextTrack track; 28 TextTrack track;
25 29
30 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
31
32 bool dispatchEvent(Event evt) native;
33
26 DocumentFragment getCueAsHTML() native; 34 DocumentFragment getCueAsHTML() native;
27 35
28 String getCueAsSource() native; 36 String getCueAsSource() native;
29 37
38 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
39
30 var dartObjectLocalStorage; 40 var dartObjectLocalStorage;
31 41
32 String get typeName() native; 42 String get typeName() native;
33 } 43 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/TextTrack.dart ('k') | client/dom/generated/src/frog/TextTrackList.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698