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

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

Issue 9618049: Fix for Issue 2036 - remove 'var' in type position on getter (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: merge 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
« no previous file with comments | « client/dom/frog/dom_frog.dart ('k') | client/dom/generated/src/frog/HTMLTrackElement.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat ive "*HTMLMediaElement" { 2 class _HTMLMediaElementJs extends _HTMLElementJs implements HTMLMediaElement nat ive "*HTMLMediaElement" {
3 3
4 static final int EOS_DECODE_ERR = 2;
5
6 static final int EOS_NETWORK_ERR = 1;
7
8 static final int EOS_NO_ERROR = 0;
9
4 static final int HAVE_CURRENT_DATA = 2; 10 static final int HAVE_CURRENT_DATA = 2;
5 11
6 static final int HAVE_ENOUGH_DATA = 4; 12 static final int HAVE_ENOUGH_DATA = 4;
7 13
8 static final int HAVE_FUTURE_DATA = 3; 14 static final int HAVE_FUTURE_DATA = 3;
9 15
10 static final int HAVE_METADATA = 1; 16 static final int HAVE_METADATA = 1;
11 17
12 static final int HAVE_NOTHING = 0; 18 static final int HAVE_NOTHING = 0;
13 19
14 static final int NETWORK_EMPTY = 0; 20 static final int NETWORK_EMPTY = 0;
15 21
16 static final int NETWORK_IDLE = 1; 22 static final int NETWORK_IDLE = 1;
17 23
18 static final int NETWORK_LOADING = 2; 24 static final int NETWORK_LOADING = 2;
19 25
20 static final int NETWORK_NO_SOURCE = 3; 26 static final int NETWORK_NO_SOURCE = 3;
21 27
28 static final int SOURCE_CLOSED = 0;
29
30 static final int SOURCE_ENDED = 2;
31
32 static final int SOURCE_OPEN = 1;
33
22 bool autoplay; 34 bool autoplay;
23 35
24 final _TimeRangesJs buffered; 36 final _TimeRangesJs buffered;
25 37
26 _MediaControllerJs controller; 38 _MediaControllerJs controller;
27 39
28 bool controls; 40 bool controls;
29 41
30 final String currentSrc; 42 final String currentSrc;
31 43
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
94 void load() native; 106 void load() native;
95 107
96 void pause() native; 108 void pause() native;
97 109
98 void play() native; 110 void play() native;
99 111
100 void webkitSourceAppend(_Uint8ArrayJs data) native; 112 void webkitSourceAppend(_Uint8ArrayJs data) native;
101 113
102 void webkitSourceEndOfStream(int status) native; 114 void webkitSourceEndOfStream(int status) native;
103 } 115 }
OLDNEW
« no previous file with comments | « client/dom/frog/dom_frog.dart ('k') | client/dom/generated/src/frog/HTMLTrackElement.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698