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

Side by Side Diff: client/dom/generated/src/interface/HTMLMediaElement.dart

Issue 9103001: Revert "Refresh dart:dom" (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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
49 bool get controls(); 45 bool get controls();
50 46
51 void set controls(bool value); 47 void set controls(bool value);
52 48
53 String get currentSrc(); 49 String get currentSrc();
54 50
55 num get currentTime(); 51 num get currentTime();
56 52
57 void set currentTime(num value); 53 void set currentTime(num value);
58 54
(...skipping 10 matching lines...) Expand all
69 bool get ended(); 65 bool get ended();
70 66
71 MediaError get error(); 67 MediaError get error();
72 68
73 num get initialTime(); 69 num get initialTime();
74 70
75 bool get loop(); 71 bool get loop();
76 72
77 void set loop(bool value); 73 void set loop(bool value);
78 74
79 String get mediaGroup();
80
81 void set mediaGroup(String value);
82
83 bool get muted(); 75 bool get muted();
84 76
85 void set muted(bool value); 77 void set muted(bool value);
86 78
87 int get networkState(); 79 int get networkState();
88 80
89 bool get paused(); 81 bool get paused();
90 82
91 num get playbackRate(); 83 num get playbackRate();
92 84
(...skipping 10 matching lines...) Expand all
103 TimeRanges get seekable(); 95 TimeRanges get seekable();
104 96
105 bool get seeking(); 97 bool get seeking();
106 98
107 String get src(); 99 String get src();
108 100
109 void set src(String value); 101 void set src(String value);
110 102
111 num get startTime(); 103 num get startTime();
112 104
113 TextTrackList get textTracks();
114
115 num get volume(); 105 num get volume();
116 106
117 void set volume(num value); 107 void set volume(num value);
118 108
119 int get webkitAudioDecodedByteCount(); 109 int get webkitAudioDecodedByteCount();
120 110
121 bool get webkitClosedCaptionsVisible(); 111 bool get webkitClosedCaptionsVisible();
122 112
123 void set webkitClosedCaptionsVisible(bool value); 113 void set webkitClosedCaptionsVisible(bool value);
124 114
(...skipping 16 matching lines...) Expand all
141 void load(); 131 void load();
142 132
143 void pause(); 133 void pause();
144 134
145 void play(); 135 void play();
146 136
147 void webkitSourceAppend(Uint8Array data); 137 void webkitSourceAppend(Uint8Array data);
148 138
149 void webkitSourceEndOfStream(int status); 139 void webkitSourceEndOfStream(int status);
150 } 140 }
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