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

Side by Side 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 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 class _DocumentWrappingImplementation extends _NodeWrappingImplementation implem ents Document { 7 class _DocumentWrappingImplementation extends _NodeWrappingImplementation implem ents Document {
8 _DocumentWrappingImplementation() : super() {} 8 _DocumentWrappingImplementation() : super() {}
9 9
10 static create__DocumentWrappingImplementation() native { 10 static create__DocumentWrappingImplementation() native {
(...skipping 101 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 112
113 StyleSheetList get styleSheets() { return _get_styleSheets(this); } 113 StyleSheetList get styleSheets() { return _get_styleSheets(this); }
114 static StyleSheetList _get_styleSheets(var _this) native; 114 static StyleSheetList _get_styleSheets(var _this) native;
115 115
116 String get title() { return _get_title(this); } 116 String get title() { return _get_title(this); }
117 static String _get_title(var _this) native; 117 static String _get_title(var _this) native;
118 118
119 void set title(String value) { _set_title(this, value); } 119 void set title(String value) { _set_title(this, value); }
120 static void _set_title(var _this, String value) native; 120 static void _set_title(var _this, String value) native;
121 121
122 Element get webkitCurrentFullScreenElement() { return _get_webkitCurrentFullSc reenElement(this); }
123 static Element _get_webkitCurrentFullScreenElement(var _this) native;
124
125 bool get webkitFullScreenKeyboardInputAllowed() { return _get_webkitFullScreen KeyboardInputAllowed(this); }
126 static bool _get_webkitFullScreenKeyboardInputAllowed(var _this) native;
127
122 bool get webkitHidden() { return _get_webkitHidden(this); } 128 bool get webkitHidden() { return _get_webkitHidden(this); }
123 static bool _get_webkitHidden(var _this) native; 129 static bool _get_webkitHidden(var _this) native;
124 130
131 bool get webkitIsFullScreen() { return _get_webkitIsFullScreen(this); }
132 static bool _get_webkitIsFullScreen(var _this) native;
133
125 String get webkitVisibilityState() { return _get_webkitVisibilityState(this); } 134 String get webkitVisibilityState() { return _get_webkitVisibilityState(this); }
126 static String _get_webkitVisibilityState(var _this) native; 135 static String _get_webkitVisibilityState(var _this) native;
127 136
128 String get xmlEncoding() { return _get_xmlEncoding(this); } 137 String get xmlEncoding() { return _get_xmlEncoding(this); }
129 static String _get_xmlEncoding(var _this) native; 138 static String _get_xmlEncoding(var _this) native;
130 139
131 bool get xmlStandalone() { return _get_xmlStandalone(this); } 140 bool get xmlStandalone() { return _get_xmlStandalone(this); }
132 static bool _get_xmlStandalone(var _this) native; 141 static bool _get_xmlStandalone(var _this) native;
133 142
134 void set xmlStandalone(bool value) { _set_xmlStandalone(this, value); } 143 void set xmlStandalone(bool value) { _set_xmlStandalone(this, value); }
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
318 Element querySelector(String selectors) { 327 Element querySelector(String selectors) {
319 return _querySelector(this, selectors); 328 return _querySelector(this, selectors);
320 } 329 }
321 static Element _querySelector(receiver, selectors) native; 330 static Element _querySelector(receiver, selectors) native;
322 331
323 NodeList querySelectorAll(String selectors) { 332 NodeList querySelectorAll(String selectors) {
324 return _querySelectorAll(this, selectors); 333 return _querySelectorAll(this, selectors);
325 } 334 }
326 static NodeList _querySelectorAll(receiver, selectors) native; 335 static NodeList _querySelectorAll(receiver, selectors) native;
327 336
337 void webkitCancelFullScreen() {
338 _webkitCancelFullScreen(this);
339 return;
340 }
341 static void _webkitCancelFullScreen(receiver) native;
342
328 String get typeName() { return "Document"; } 343 String get typeName() { return "Document"; }
329 } 344 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698