| OLD | NEW |
| 1 | 1 |
| 2 class DOMWindow native "@*DOMWindow" { | 2 class DOMWindow native "@*DOMWindow" { |
| 3 | 3 |
| 4 static final int PERSISTENT = 1; | 4 static final int PERSISTENT = 1; |
| 5 | 5 |
| 6 static final int TEMPORARY = 0; | 6 static final int TEMPORARY = 0; |
| 7 | 7 |
| 8 DOMApplicationCache applicationCache; | 8 DOMApplicationCache applicationCache; |
| 9 | 9 |
| 10 Navigator clientInformation; | 10 Navigator clientInformation; |
| (...skipping 131 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 142 MediaQueryList matchMedia(String query) native; | 142 MediaQueryList matchMedia(String query) native; |
| 143 | 143 |
| 144 void moveBy(num x, num y) native; | 144 void moveBy(num x, num y) native; |
| 145 | 145 |
| 146 void moveTo(num x, num y) native; | 146 void moveTo(num x, num y) native; |
| 147 | 147 |
| 148 DOMWindow open(String url, String name, [String options = null]) native; | 148 DOMWindow open(String url, String name, [String options = null]) native; |
| 149 | 149 |
| 150 Database openDatabase(String name, String version, String displayName, int est
imatedSize, [DatabaseCallback creationCallback = null]) native; | 150 Database openDatabase(String name, String version, String displayName, int est
imatedSize, [DatabaseCallback creationCallback = null]) native; |
| 151 | 151 |
| 152 void postMessage(String message, String targetOrigin, [List messagePorts = nul
l]) native; | 152 void postMessage(String message, var messagePorts_OR_targetOrigin, [String tar
getOrigin = null]) native; |
| 153 | 153 |
| 154 void print() native; | 154 void print() native; |
| 155 | 155 |
| 156 String prompt(String message, String defaultValue) native; | 156 String prompt(String message, String defaultValue) native; |
| 157 | 157 |
| 158 void releaseEvents() native; | 158 void releaseEvents() native; |
| 159 | 159 |
| 160 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; | 160 void removeEventListener(String type, EventListener listener, [bool useCapture
= null]) native; |
| 161 | 161 |
| 162 void resizeBy(num x, num y) native; | 162 void resizeBy(num x, num y) native; |
| 163 | 163 |
| 164 void resizeTo(num width, num height) native; | 164 void resizeTo(num width, num height) native; |
| 165 | 165 |
| 166 void scroll(int x, int y) native; | 166 void scroll(int x, int y) native; |
| 167 | 167 |
| 168 void scrollBy(int x, int y) native; | 168 void scrollBy(int x, int y) native; |
| 169 | 169 |
| 170 void scrollTo(int x, int y) native; | 170 void scrollTo(int x, int y) native; |
| 171 | 171 |
| 172 int setInterval(TimeoutHandler handler, int timeout) native; | 172 int setInterval(TimeoutHandler handler, int timeout) native; |
| 173 | 173 |
| 174 int setTimeout(TimeoutHandler handler, int timeout) native; | 174 int setTimeout(TimeoutHandler handler, int timeout) native; |
| 175 | 175 |
| 176 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr
gs = null]) native; | 176 Object showModalDialog(String url, [Object dialogArgs = null, String featureAr
gs = null]) native; |
| 177 | 177 |
| 178 void stop() native; | 178 void stop() native; |
| 179 | 179 |
| 180 void webkitCancelAnimationFrame(int id) native; | |
| 181 | |
| 182 void webkitCancelRequestAnimationFrame(int id) native; | 180 void webkitCancelRequestAnimationFrame(int id) native; |
| 183 | 181 |
| 184 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; | 182 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p) native; |
| 185 | 183 |
| 186 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; | 184 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p) native; |
| 187 | 185 |
| 188 void webkitPostMessage(String message, String targetOrigin, [List transferList
= null]) native; | 186 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri
ng targetOrigin = null]) native; |
| 189 | 187 |
| 190 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element) native; | 188 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element) native; |
| 191 | 189 |
| 192 void webkitRequestFileSystem(int type, int size, FileSystemCallback successCal
lback, [ErrorCallback errorCallback = null]) native; | 190 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa
llback = null, ErrorCallback errorCallback = null]) native; |
| 193 | 191 |
| 194 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k = null, ErrorCallback errorCallback = null]) native; | 192 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k = null, ErrorCallback errorCallback = null]) native; |
| 195 | 193 |
| 196 var dartObjectLocalStorage; | 194 var dartObjectLocalStorage; |
| 197 | 195 |
| 198 String get typeName() native; | 196 String get typeName() native; |
| 199 } | 197 } |
| OLD | NEW |