| OLD | NEW |
| (Empty) | |
| 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 |
| 3 // BSD-style license that can be found in the LICENSE file. |
| 4 |
| 5 // WARNING: Do not edit - generated code. |
| 6 |
| 7 /// @domName MediaError |
| 8 interface MediaError { |
| 9 |
| 10 static final int MEDIA_ERR_ABORTED = 1; |
| 11 |
| 12 static final int MEDIA_ERR_DECODE = 3; |
| 13 |
| 14 static final int MEDIA_ERR_ENCRYPTED = 5; |
| 15 |
| 16 static final int MEDIA_ERR_NETWORK = 2; |
| 17 |
| 18 static final int MEDIA_ERR_SRC_NOT_SUPPORTED = 4; |
| 19 |
| 20 /** @domName MediaError.code */ |
| 21 final int code; |
| 22 } |
| OLD | NEW |