| OLD | NEW |
| 1 | 1 |
| 2 class IDBRequest native "*IDBRequest" { | 2 class IDBRequest native "*IDBRequest" { |
| 3 | 3 |
| 4 static final int DONE = 2; | 4 static final int DONE = 2; |
| 5 | 5 |
| 6 static final int LOADING = 1; | 6 static final int LOADING = 1; |
| 7 | 7 |
| 8 int errorCode; | 8 int errorCode; |
| 9 | 9 |
| 10 EventListener onerror; |
| 11 |
| 12 EventListener onsuccess; |
| 13 |
| 10 int readyState; | 14 int readyState; |
| 11 | 15 |
| 12 IDBAny result; | 16 IDBAny result; |
| 13 | 17 |
| 14 IDBAny source; | 18 IDBAny source; |
| 15 | 19 |
| 16 IDBTransaction transaction; | 20 IDBTransaction transaction; |
| 17 | 21 |
| 18 String webkitErrorMessage; | 22 String webkitErrorMessage; |
| 19 | 23 |
| 20 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; | 24 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 21 | 25 |
| 22 bool dispatchEvent(Event evt) native; | 26 bool dispatchEvent(Event evt) native; |
| 23 | 27 |
| 24 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 28 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 25 | 29 |
| 26 var dartObjectLocalStorage; | 30 var dartObjectLocalStorage; |
| 27 | 31 |
| 28 String get typeName() native; | 32 String get typeName() native; |
| 29 } | 33 } |
| OLD | NEW |