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

Side by Side Diff: client/dom/generated/src/wrapping/_ElementWrappingImplementation.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 _ElementWrappingImplementation extends _NodeWrappingImplementation impleme nts Element { 7 class _ElementWrappingImplementation extends _NodeWrappingImplementation impleme nts Element {
8 _ElementWrappingImplementation() : super() {} 8 _ElementWrappingImplementation() : super() {}
9 9
10 static create__ElementWrappingImplementation() native { 10 static create__ElementWrappingImplementation() native {
(...skipping 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 Attr setAttributeNodeNS(Attr newAttr) { 227 Attr setAttributeNodeNS(Attr newAttr) {
228 return _setAttributeNodeNS(this, newAttr); 228 return _setAttributeNodeNS(this, newAttr);
229 } 229 }
230 static Attr _setAttributeNodeNS(receiver, newAttr) native; 230 static Attr _setAttributeNodeNS(receiver, newAttr) native;
231 231
232 bool webkitMatchesSelector(String selectors) { 232 bool webkitMatchesSelector(String selectors) {
233 return _webkitMatchesSelector(this, selectors); 233 return _webkitMatchesSelector(this, selectors);
234 } 234 }
235 static bool _webkitMatchesSelector(receiver, selectors) native; 235 static bool _webkitMatchesSelector(receiver, selectors) native;
236 236
237 void webkitRequestFullScreen(int flags) {
238 _webkitRequestFullScreen(this, flags);
239 return;
240 }
241 static void _webkitRequestFullScreen(receiver, flags) native;
242
237 String get typeName() { return "Element"; } 243 String get typeName() { return "Element"; }
238 } 244 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698