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

Unified Diff: client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.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
Index: client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart b/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
index 163b3bc03c3430057a7111379562508b62c59364..d4bc2adc238e8b0e5de3acf0c72cabd16b368d61 100644
--- a/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_DOMWindowWrappingImplementation.dart
@@ -535,5 +535,47 @@ class _DOMWindowWrappingImplementation extends DOMWrapperBase implements DOMWind
}
static int _webkitRequestAnimationFrame(receiver, callback, element) native;
+ void webkitRequestFileSystem(int type, int size, [FileSystemCallback successCallback = null, ErrorCallback errorCallback = null]) {
+ if (successCallback === null) {
+ if (errorCallback === null) {
+ _webkitRequestFileSystem(this, type, size);
+ return;
+ }
+ } else {
+ if (errorCallback === null) {
+ _webkitRequestFileSystem_2(this, type, size, successCallback);
+ return;
+ } else {
+ _webkitRequestFileSystem_3(this, type, size, successCallback, errorCallback);
+ return;
+ }
+ }
+ throw "Incorrect number or type of arguments";
+ }
+ static void _webkitRequestFileSystem(receiver, type, size) native;
+ static void _webkitRequestFileSystem_2(receiver, type, size, successCallback) native;
+ static void _webkitRequestFileSystem_3(receiver, type, size, successCallback, errorCallback) native;
+
+ void webkitResolveLocalFileSystemURL(String url, [EntryCallback successCallback = null, ErrorCallback errorCallback = null]) {
+ if (successCallback === null) {
+ if (errorCallback === null) {
+ _webkitResolveLocalFileSystemURL(this, url);
+ return;
+ }
+ } else {
+ if (errorCallback === null) {
+ _webkitResolveLocalFileSystemURL_2(this, url, successCallback);
+ return;
+ } else {
+ _webkitResolveLocalFileSystemURL_3(this, url, successCallback, errorCallback);
+ return;
+ }
+ }
+ throw "Incorrect number or type of arguments";
+ }
+ static void _webkitResolveLocalFileSystemURL(receiver, url) native;
+ static void _webkitResolveLocalFileSystemURL_2(receiver, url, successCallback) native;
+ static void _webkitResolveLocalFileSystemURL_3(receiver, url, successCallback, errorCallback) native;
+
String get typeName() { return "DOMWindow"; }
}

Powered by Google App Engine
This is Rietveld 408576698