| OLD | NEW |
| 1 | 1 |
| 2 class IDBDatabaseException native "*IDBDatabaseException" { | 2 class IDBDatabaseException native "*IDBDatabaseException" { |
| 3 | 3 |
| 4 static final int ABORT_ERR = 13; |
| 5 |
| 6 static final int CONSTRAINT_ERR = 4; |
| 7 |
| 8 static final int DATA_ERR = 5; |
| 9 |
| 10 static final int DEADLOCK_ERR = 11; |
| 11 |
| 12 static final int NON_TRANSIENT_ERR = 2; |
| 13 |
| 14 static final int NOT_ALLOWED_ERR = 6; |
| 15 |
| 16 static final int NOT_FOUND_ERR = 3; |
| 17 |
| 18 static final int NO_ERR = 0; |
| 19 |
| 20 static final int READ_ONLY_ERR = 12; |
| 21 |
| 22 static final int RECOVERABLE_ERR = 8; |
| 23 |
| 24 static final int SERIAL_ERR = 7; |
| 25 |
| 26 static final int TIMEOUT_ERR = 10; |
| 27 |
| 28 static final int TRANSIENT_ERR = 9; |
| 29 |
| 30 static final int UNKNOWN_ERR = 1; |
| 31 |
| 4 int code; | 32 int code; |
| 5 | 33 |
| 6 String message; | 34 String message; |
| 7 | 35 |
| 8 String name; | 36 String name; |
| 9 | 37 |
| 10 String toString() native; | 38 String toString() native; |
| 11 | 39 |
| 12 var dartObjectLocalStorage; | 40 var dartObjectLocalStorage; |
| 13 | 41 |
| 14 String get typeName() native; | 42 String get typeName() native; |
| 15 } | 43 } |
| OLD | NEW |