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

Side by Side Diff: client/html/generated/html/frog/TextTrackCue.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 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
(Empty)
1
2 class _TextTrackCueImpl implements TextTrackCue native "*TextTrackCue" {
3
4 String alignment;
5
6 String direction;
7
8 num endTime;
9
10 String id;
11
12 int linePosition;
13
14 EventListener onenter;
15
16 EventListener onexit;
17
18 bool pauseOnExit;
19
20 int size;
21
22 bool snapToLines;
23
24 num startTime;
25
26 String text;
27
28 int textPosition;
29
30 final _TextTrackImpl track;
31
32 void addEventListener(String type, EventListener listener, [bool useCapture = null]) native;
33
34 bool dispatchEvent(_EventImpl evt) native;
35
36 _DocumentFragmentImpl getCueAsHTML() native;
37
38 void removeEventListener(String type, EventListener listener, [bool useCapture = null]) native;
39 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698