| OLD | NEW |
| (Empty) | |
| 1 |
| 2 class DOMApplicationCache native "DOMApplicationCache" { |
| 3 |
| 4 EventListener oncached; |
| 5 |
| 6 EventListener onchecking; |
| 7 |
| 8 EventListener ondownloading; |
| 9 |
| 10 EventListener onerror; |
| 11 |
| 12 EventListener onnoupdate; |
| 13 |
| 14 EventListener onobsolete; |
| 15 |
| 16 EventListener onprogress; |
| 17 |
| 18 EventListener onupdateready; |
| 19 |
| 20 int status; |
| 21 |
| 22 void addEventListener(String type, EventListener listener, [bool useCapture =
null]) native; |
| 23 |
| 24 bool dispatchEvent(Event evt) native; |
| 25 |
| 26 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 27 |
| 28 void swapCache() native; |
| 29 |
| 30 void update() native; |
| 31 |
| 32 var dartObjectLocalStorage; |
| 33 |
| 34 String get typeName() native; |
| 35 } |
| OLD | NEW |