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