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