| OLD | NEW |
| 1 | 1 |
| 2 class DOMWindow native "@*DOMWindow" { | 2 class DOMWindow native "@*DOMWindow" { |
| 3 | 3 |
| 4 static final int PERSISTENT = 1; |
| 5 |
| 6 static final int TEMPORARY = 0; |
| 7 |
| 4 DOMApplicationCache applicationCache; | 8 DOMApplicationCache applicationCache; |
| 5 | 9 |
| 6 Navigator clientInformation; | 10 Navigator clientInformation; |
| 7 | 11 |
| 8 bool closed; | 12 bool closed; |
| 9 | 13 |
| 10 Console console; | 14 Console console; |
| 11 | 15 |
| 12 Crypto crypto; | 16 Crypto crypto; |
| 13 | 17 |
| (...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 170 void webkitCancelRequestAnimationFrame(int id) native; | 174 void webkitCancelRequestAnimationFrame(int id) native; |
| 171 | 175 |
| 172 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; | 176 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; |
| 173 | 177 |
| 174 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; | 178 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; |
| 175 | 179 |
| 176 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri
ng targetOrigin = null]) native; | 180 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri
ng targetOrigin = null]) native; |
| 177 | 181 |
| 178 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element) native; | 182 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element) native; |
| 179 | 183 |
| 184 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa
llback = null, ErrorCallback errorCallback = null]) native; |
| 185 |
| 186 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k = null, ErrorCallback errorCallback = null]) native; |
| 187 |
| 180 var dartObjectLocalStorage; | 188 var dartObjectLocalStorage; |
| 181 | 189 |
| 182 String get typeName() native; | 190 String get typeName() native; |
| 183 } | 191 } |
| OLD | NEW |