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

Side by Side Diff: lib/html/doc/interface/TextTrack.dartdoc

Issue 10544064: Add dummy dart:html library for documentation. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 6 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
« no previous file with comments | « lib/html/doc/interface/TextMetrics.dartdoc ('k') | lib/html/doc/interface/TextTrackCue.dartdoc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file.
4
5 // WARNING:
6 // This file contains documentation that is merged into the real source.
7 // Do not make code changes here.
8
9 /// @domName TextTrack
10 interface TextTrack extends EventTarget {
11
12 /**
13 * @domName EventTarget.addEventListener, EventTarget.removeEventListener, Eve ntTarget.dispatchEvent
14 */
15 TextTrackEvents get on();
16
17 static final int DISABLED = 0;
18
19 static final int HIDDEN = 1;
20
21 static final int SHOWING = 2;
22
23 /** @domName TextTrack.activeCues */
24 final TextTrackCueList activeCues;
25
26 /** @domName TextTrack.cues */
27 final TextTrackCueList cues;
28
29 /** @domName TextTrack.kind */
30 final String kind;
31
32 /** @domName TextTrack.label */
33 final String label;
34
35 /** @domName TextTrack.language */
36 final String language;
37
38 /** @domName TextTrack.mode */
39 int mode;
40
41 /** @domName TextTrack.addCue */
42 void addCue(TextTrackCue cue);
43
44 /** @domName TextTrack.addEventListener */
45 void $dom_addEventListener(String type, EventListener listener, [bool useCaptu re]);
46
47 /** @domName TextTrack.dispatchEvent */
48 bool $dom_dispatchEvent(Event evt);
49
50 /** @domName TextTrack.removeCue */
51 void removeCue(TextTrackCue cue);
52
53 /** @domName TextTrack.removeEventListener */
54 void $dom_removeEventListener(String type, EventListener listener, [bool useCa pture]);
55 }
56
57 interface TextTrackEvents extends Events {
58
59 EventListenerList get cueChange();
60 }
OLDNEW
« no previous file with comments | « lib/html/doc/interface/TextMetrics.dartdoc ('k') | lib/html/doc/interface/TextTrackCue.dartdoc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698