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