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

Side by Side Diff: client/dom/generated/src/interface/WorkerContext.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 WorkerGlobalScope { 7 interface WorkerGlobalScope {
8 8
9 WorkerLocation get location(); 9 WorkerLocation get location();
10 10
(...skipping 21 matching lines...) Expand all
32 32
33 bool dispatchEvent(Event evt); 33 bool dispatchEvent(Event evt);
34 34
35 void importScripts(); 35 void importScripts();
36 36
37 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 37 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
38 38
39 int setInterval(TimeoutHandler handler, int timeout); 39 int setInterval(TimeoutHandler handler, int timeout);
40 40
41 int setTimeout(TimeoutHandler handler, int timeout); 41 int setTimeout(TimeoutHandler handler, int timeout);
42
43 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback, ErrorCallback errorCallback]);
44
45 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size);
46
47 EntrySync webkitResolveLocalFileSystemSyncURL(String url);
48
49 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]);
42 } 50 }
43 51
44 interface WorkerContext extends WorkerGlobalScope { 52 interface WorkerContext extends WorkerGlobalScope {
53
54 static final int PERSISTENT = 1;
55
56 static final int TEMPORARY = 0;
45 } 57 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698