| 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 MediaKeyError |
| 8 interface MediaKeyError { |
| 9 |
| 10 static final int MEDIA_KEYERR_CLIENT = 2; |
| 11 |
| 12 static final int MEDIA_KEYERR_DOMAIN = 6; |
| 13 |
| 14 static final int MEDIA_KEYERR_HARDWARECHANGE = 5; |
| 15 |
| 16 static final int MEDIA_KEYERR_OUTPUT = 4; |
| 17 |
| 18 static final int MEDIA_KEYERR_SERVICE = 3; |
| 19 |
| 20 static final int MEDIA_KEYERR_UNKNOWN = 1; |
| 21 |
| 22 /** @domName MediaKeyError.code */ |
| 23 final int code; |
| 24 } |
| OLD | NEW |