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

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

Issue 8820004: Work-around for FireFox: patch non-leaf types statically if possible. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years 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 1
2 class HTMLMediaElement extends HTMLElement native "*HTMLMediaElement" { 2 class HTMLMediaElement extends HTMLElement native "HTMLMediaElement" {
3 3
4 static final int HAVE_CURRENT_DATA = 2; 4 static final int HAVE_CURRENT_DATA = 2;
5 5
6 static final int HAVE_ENOUGH_DATA = 4; 6 static final int HAVE_ENOUGH_DATA = 4;
7 7
8 static final int HAVE_FUTURE_DATA = 3; 8 static final int HAVE_FUTURE_DATA = 3;
9 9
10 static final int HAVE_METADATA = 1; 10 static final int HAVE_METADATA = 1;
11 11
12 static final int HAVE_NOTHING = 0; 12 static final int HAVE_NOTHING = 0;
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
78 int webkitVideoDecodedByteCount; 78 int webkitVideoDecodedByteCount;
79 79
80 String canPlayType(String type) native; 80 String canPlayType(String type) native;
81 81
82 void load() native; 82 void load() native;
83 83
84 void pause() native; 84 void pause() native;
85 85
86 void play() native; 86 void play() native;
87 } 87 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698