| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 // WARNING: Do not edit - generated code. | 5 // WARNING: Do not edit - generated code. |
| 6 | 6 |
| 7 interface Window extends EventTarget { | 7 interface Window extends EventTarget { |
| 8 | 8 |
| 9 DOMApplicationCache get applicationCache(); | 9 DOMApplicationCache get applicationCache(); |
| 10 | 10 |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 163 StyleMedia get styleMedia(); | 163 StyleMedia get styleMedia(); |
| 164 | 164 |
| 165 BarInfo get toolbar(); | 165 BarInfo get toolbar(); |
| 166 | 166 |
| 167 void set toolbar(BarInfo value); | 167 void set toolbar(BarInfo value); |
| 168 | 168 |
| 169 DOMWindow get top(); | 169 DOMWindow get top(); |
| 170 | 170 |
| 171 void set top(DOMWindow value); | 171 void set top(DOMWindow value); |
| 172 | 172 |
| 173 IDBFactory get webkitIndexedDB(); |
| 174 |
| 173 NotificationCenter get webkitNotifications(); | 175 NotificationCenter get webkitNotifications(); |
| 174 | 176 |
| 177 StorageInfo get webkitStorageInfo(); |
| 178 |
| 175 DOMURL get webkitURL(); | 179 DOMURL get webkitURL(); |
| 176 | 180 |
| 177 DOMWindow get window(); | 181 DOMWindow get window(); |
| 178 | 182 |
| 179 void addEventListener(String type, EventListener listener, [bool useCapture]); | 183 void addEventListener(String type, EventListener listener, [bool useCapture]); |
| 180 | 184 |
| 181 void alert(String message); | 185 void alert(String message); |
| 182 | 186 |
| 183 String atob(String string); | 187 String atob(String string); |
| 184 | 188 |
| (...skipping 24 matching lines...) Expand all Loading... |
| 209 DOMSelection getSelection(); | 213 DOMSelection getSelection(); |
| 210 | 214 |
| 211 MediaQueryList matchMedia(String query); | 215 MediaQueryList matchMedia(String query); |
| 212 | 216 |
| 213 void moveBy(num x, num y); | 217 void moveBy(num x, num y); |
| 214 | 218 |
| 215 void moveTo(num x, num y); | 219 void moveTo(num x, num y); |
| 216 | 220 |
| 217 DOMWindow open(String url, String name, [String options]); | 221 DOMWindow open(String url, String name, [String options]); |
| 218 | 222 |
| 223 Database openDatabase(String name, String version, String displayName, int est
imatedSize, [DatabaseCallback creationCallback]); |
| 224 |
| 219 void postMessage(String message, var messagePorts_OR_targetOrigin, [String tar
getOrigin]); | 225 void postMessage(String message, var messagePorts_OR_targetOrigin, [String tar
getOrigin]); |
| 220 | 226 |
| 221 void print(); | 227 void print(); |
| 222 | 228 |
| 223 String prompt(String message, String defaultValue); | 229 String prompt(String message, String defaultValue); |
| 224 | 230 |
| 225 void releaseEvents(); | 231 void releaseEvents(); |
| 226 | 232 |
| 227 void removeEventListener(String type, EventListener listener, [bool useCapture
]); | 233 void removeEventListener(String type, EventListener listener, [bool useCapture
]); |
| 228 | 234 |
| (...skipping 29 matching lines...) Expand all Loading... |
| 258 | 264 |
| 259 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k, ErrorCallback errorCallback]); | 265 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k, ErrorCallback errorCallback]); |
| 260 } | 266 } |
| 261 | 267 |
| 262 interface DOMWindow extends Window { | 268 interface DOMWindow extends Window { |
| 263 | 269 |
| 264 static final int PERSISTENT = 1; | 270 static final int PERSISTENT = 1; |
| 265 | 271 |
| 266 static final int TEMPORARY = 0; | 272 static final int TEMPORARY = 0; |
| 267 } | 273 } |
| OLD | NEW |