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

Side by Side Diff: client/dom/generated/src/interface/HTMLMediaElement.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 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 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. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 // WARNING: Do not edit - generated code. 5 // WARNING: Do not edit - generated code.
6 6
7 interface HTMLMediaElement extends HTMLElement { 7 interface HTMLMediaElement extends HTMLElement {
8 8
9 static final int EOS_DECODE_ERR = 2; 9 static final int EOS_DECODE_ERR = 2;
10 10
(...skipping 24 matching lines...) Expand all
35 static final int SOURCE_ENDED = 2; 35 static final int SOURCE_ENDED = 2;
36 36
37 static final int SOURCE_OPEN = 1; 37 static final int SOURCE_OPEN = 1;
38 38
39 bool get autoplay(); 39 bool get autoplay();
40 40
41 void set autoplay(bool value); 41 void set autoplay(bool value);
42 42
43 TimeRanges get buffered(); 43 TimeRanges get buffered();
44 44
45 MediaController get controller();
46
47 void set controller(MediaController value);
48
45 bool get controls(); 49 bool get controls();
46 50
47 void set controls(bool value); 51 void set controls(bool value);
48 52
49 String get currentSrc(); 53 String get currentSrc();
50 54
51 num get currentTime(); 55 num get currentTime();
52 56
53 void set currentTime(num value); 57 void set currentTime(num value);
54 58
(...skipping 10 matching lines...) Expand all
65 bool get ended(); 69 bool get ended();
66 70
67 MediaError get error(); 71 MediaError get error();
68 72
69 num get initialTime(); 73 num get initialTime();
70 74
71 bool get loop(); 75 bool get loop();
72 76
73 void set loop(bool value); 77 void set loop(bool value);
74 78
79 String get mediaGroup();
80
81 void set mediaGroup(String value);
82
75 bool get muted(); 83 bool get muted();
76 84
77 void set muted(bool value); 85 void set muted(bool value);
78 86
79 int get networkState(); 87 int get networkState();
80 88
81 bool get paused(); 89 bool get paused();
82 90
83 num get playbackRate(); 91 num get playbackRate();
84 92
(...skipping 10 matching lines...) Expand all
95 TimeRanges get seekable(); 103 TimeRanges get seekable();
96 104
97 bool get seeking(); 105 bool get seeking();
98 106
99 String get src(); 107 String get src();
100 108
101 void set src(String value); 109 void set src(String value);
102 110
103 num get startTime(); 111 num get startTime();
104 112
113 TextTrackList get textTracks();
114
105 num get volume(); 115 num get volume();
106 116
107 void set volume(num value); 117 void set volume(num value);
108 118
109 int get webkitAudioDecodedByteCount(); 119 int get webkitAudioDecodedByteCount();
110 120
111 bool get webkitClosedCaptionsVisible(); 121 bool get webkitClosedCaptionsVisible();
112 122
113 void set webkitClosedCaptionsVisible(bool value); 123 void set webkitClosedCaptionsVisible(bool value);
114 124
(...skipping 16 matching lines...) Expand all
131 void load(); 141 void load();
132 142
133 void pause(); 143 void pause();
134 144
135 void play(); 145 void play();
136 146
137 void webkitSourceAppend(Uint8Array data); 147 void webkitSourceAppend(Uint8Array data);
138 148
139 void webkitSourceEndOfStream(int status); 149 void webkitSourceEndOfStream(int status);
140 } 150 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/HTMLLegendElement.dart ('k') | client/dom/generated/src/interface/HTMLOListElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698