Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Side by Side Diff: client/dom/generated/src/interface/DOMWindow.dart

Issue 8879007: Enable fullscreen API and file system API (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WorkerContext.dart ('k') | client/dom/generated/src/interface/Document.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698