| 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 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 246 | 246 |
| 247 void webkitCancelRequestAnimationFrame(int id); | 247 void webkitCancelRequestAnimationFrame(int id); |
| 248 | 248 |
| 249 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p); | 249 WebKitPoint webkitConvertPointFromNodeToPage(Node node, WebKitPoint p); |
| 250 | 250 |
| 251 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p); | 251 WebKitPoint webkitConvertPointFromPageToNode(Node node, WebKitPoint p); |
| 252 | 252 |
| 253 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri
ng targetOrigin]); | 253 void webkitPostMessage(String message, var targetOrigin_OR_transferList, [Stri
ng targetOrigin]); |
| 254 | 254 |
| 255 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element); | 255 int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Elemen
t element); |
| 256 |
| 257 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa
llback, ErrorCallback errorCallback]); |
| 258 |
| 259 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac
k, ErrorCallback errorCallback]); |
| 256 } | 260 } |
| 257 | 261 |
| 258 interface DOMWindow extends Window { | 262 interface DOMWindow extends Window { |
| 263 |
| 264 static final int PERSISTENT = 1; |
| 265 |
| 266 static final int TEMPORARY = 0; |
| 259 } | 267 } |
| OLD | NEW |