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

Unified Diff: client/dom/generated/src/frog/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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « client/dom/generated/monkey_dom_externs.js ('k') | client/dom/generated/src/frog/Document.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: client/dom/generated/src/frog/DOMWindow.dart
diff --git a/client/dom/generated/src/frog/DOMWindow.dart b/client/dom/generated/src/frog/DOMWindow.dart
index e35cb61df634f65b5ffcdbbefdaef44c20a3ecf0..805111e4e554763e4ccdcc03b764014c46dfb26d 100644
--- a/client/dom/generated/src/frog/DOMWindow.dart
+++ b/client/dom/generated/src/frog/DOMWindow.dart
@@ -1,6 +1,10 @@
class DOMWindow native "@*DOMWindow" {
+ static final int PERSISTENT = 1;
+
+ static final int TEMPORARY = 0;
+
DOMApplicationCache applicationCache;
Navigator clientInformation;
@@ -177,6 +181,10 @@ class DOMWindow native "@*DOMWindow" {
int webkitRequestAnimationFrame(RequestAnimationFrameCallback callback, Element element) native;
+ void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCallback = null, ErrorCallback errorCallback = null]) 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/monkey_dom_externs.js ('k') | client/dom/generated/src/frog/Document.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698