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

Unified Diff: client/dom/generated/src/frog/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/dom/generated/src/frog/Element.dart ('k') | client/dom/generated/src/interface/DOMWindow.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/WorkerContext.dart
diff --git a/client/dom/generated/src/frog/WorkerContext.dart b/client/dom/generated/src/frog/WorkerContext.dart
index 3eda5bd1a3f1be01063ab98a4c12937c5a58f625..ca5473cff8dd2b3313d99fe41f1f70fd49d349b7 100644
--- a/client/dom/generated/src/frog/WorkerContext.dart
+++ b/client/dom/generated/src/frog/WorkerContext.dart
@@ -1,6 +1,10 @@
class WorkerContext native "*WorkerContext" {
+ static final int PERSISTENT = 1;
+
+ static final int TEMPORARY = 0;
+
WorkerLocation location;
WorkerNavigator navigator;
@@ -29,6 +33,14 @@ class WorkerContext native "*WorkerContext" {
int setTimeout(TimeoutHandler handler, int timeout) native;
+ void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCallback = null, ErrorCallback errorCallback = null]) native;
+
+ DOMFileSystemSync webkitRequestFileSystemSync(int type, int size) native;
+
+ EntrySync webkitResolveLocalFileSystemSyncURL(String url) native;
+
+ void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallback = null, ErrorCallback errorCallback = null]) native;
+
var dartObjectLocalStorage;
String get typeName() native;
« no previous file with comments | « client/dom/generated/src/frog/Element.dart ('k') | client/dom/generated/src/interface/DOMWindow.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698