| OLD | NEW |
| 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 Loading... |
| 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 } |
| OLD | NEW |