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

Unified Diff: client/dom/generated/src/wrapping/_DocumentWrappingImplementation.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/_DocumentWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_DocumentWrappingImplementation.dart b/client/dom/generated/src/wrapping/_DocumentWrappingImplementation.dart
index be772d86030aa22ebaf846db4ffc42d70ab1f628..6f3df589ce63688d66631dbddc6c2a19e247600c 100644
--- a/client/dom/generated/src/wrapping/_DocumentWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_DocumentWrappingImplementation.dart
@@ -119,9 +119,18 @@ class _DocumentWrappingImplementation extends _NodeWrappingImplementation implem
void set title(String value) { _set_title(this, value); }
static void _set_title(var _this, String value) native;
+ Element get webkitCurrentFullScreenElement() { return _get_webkitCurrentFullScreenElement(this); }
+ static Element _get_webkitCurrentFullScreenElement(var _this) native;
+
+ bool get webkitFullScreenKeyboardInputAllowed() { return _get_webkitFullScreenKeyboardInputAllowed(this); }
+ static bool _get_webkitFullScreenKeyboardInputAllowed(var _this) native;
+
bool get webkitHidden() { return _get_webkitHidden(this); }
static bool _get_webkitHidden(var _this) native;
+ bool get webkitIsFullScreen() { return _get_webkitIsFullScreen(this); }
+ static bool _get_webkitIsFullScreen(var _this) native;
+
String get webkitVisibilityState() { return _get_webkitVisibilityState(this); }
static String _get_webkitVisibilityState(var _this) native;
@@ -325,5 +334,11 @@ class _DocumentWrappingImplementation extends _NodeWrappingImplementation implem
}
static NodeList _querySelectorAll(receiver, selectors) native;
+ void webkitCancelFullScreen() {
+ _webkitCancelFullScreen(this);
+ return;
+ }
+ static void _webkitCancelFullScreen(receiver) native;
+
String get typeName() { return "Document"; }
}

Powered by Google App Engine
This is Rietveld 408576698