| OLD | NEW |
| 1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2012, 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 TrackElement extends Element { | 7 interface TrackElement extends Element { |
| 8 | 8 |
| 9 static final int ERROR = 3; | |
| 10 | |
| 11 static final int LOADED = 2; | 9 static final int LOADED = 2; |
| 12 | 10 |
| 13 static final int LOADING = 1; | 11 static final int LOADING = 1; |
| 14 | 12 |
| 15 static final int NONE = 0; | 13 static final int NONE = 0; |
| 16 | 14 |
| 17 bool isDefault; | 15 bool isDefault; |
| 18 | 16 |
| 19 String kind; | 17 String kind; |
| 20 | 18 |
| 21 String label; | 19 String label; |
| 22 | 20 |
| 23 final int readyState; | 21 final int readyState; |
| 24 | 22 |
| 25 String src; | 23 String src; |
| 26 | 24 |
| 27 String srclang; | 25 String srclang; |
| 28 | 26 |
| 29 final TextTrack track; | 27 final TextTrack track; |
| 30 } | 28 } |
| OLD | NEW |