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

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

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs 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 16 matching lines...) Expand all
27 void clearInterval(int handle); 27 void clearInterval(int handle);
28 28
29 void clearTimeout(int handle); 29 void clearTimeout(int handle);
30 30
31 void close(); 31 void close();
32 32
33 bool dispatchEvent(Event evt); 33 bool dispatchEvent(Event evt);
34 34
35 void importScripts(); 35 void importScripts();
36 36
37 Database openDatabase(String name, String version, String displayName, int est imatedSize, [DatabaseCallback creationCallback]);
38
39 DatabaseSync openDatabaseSync(String name, String version, String displayName, int estimatedSize, [DatabaseCallback creationCallback]);
40
37 void removeEventListener(String type, EventListener listener, [bool useCapture ]); 41 void removeEventListener(String type, EventListener listener, [bool useCapture ]);
38 42
39 int setInterval(TimeoutHandler handler, int timeout); 43 int setInterval(TimeoutHandler handler, int timeout);
40 44
41 int setTimeout(TimeoutHandler handler, int timeout); 45 int setTimeout(TimeoutHandler handler, int timeout);
42 46
43 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback, ErrorCallback errorCallback]); 47 void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCa llback, ErrorCallback errorCallback]);
44 48
45 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size); 49 DOMFileSystemSync webkitRequestFileSystemSync(int type, int size);
46 50
47 EntrySync webkitResolveLocalFileSystemSyncURL(String url); 51 EntrySync webkitResolveLocalFileSystemSyncURL(String url);
48 52
49 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]); 53 void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallbac k, ErrorCallback errorCallback]);
50 } 54 }
51 55
52 interface WorkerContext extends WorkerGlobalScope { 56 interface WorkerContext extends WorkerGlobalScope {
53 57
54 static final int PERSISTENT = 1; 58 static final int PERSISTENT = 1;
55 59
56 static final int TEMPORARY = 0; 60 static final int TEMPORARY = 0;
57 } 61 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698