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

Side by Side Diff: client/dom/generated/src/wrapping/_DocumentWrappingImplementation.dart

Issue 8895013: Add enables consistent with Chrome's WebKit (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Alpha the ENABLEs 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 216 matching lines...) Expand 10 before | Expand all | Expand 10 after
227 Range createRange() { 227 Range createRange() {
228 return _createRange(this); 228 return _createRange(this);
229 } 229 }
230 static Range _createRange(receiver) native; 230 static Range _createRange(receiver) native;
231 231
232 Text createTextNode(String data) { 232 Text createTextNode(String data) {
233 return _createTextNode(this, data); 233 return _createTextNode(this, data);
234 } 234 }
235 static Text _createTextNode(receiver, data) native; 235 static Text _createTextNode(receiver, data) native;
236 236
237 Touch createTouch(DOMWindow window, EventTarget target, int identifier, int pa geX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRadiusY, num webkitRotationAngle, num webkitForce) {
238 return _createTouch(this, window, target, identifier, pageX, pageY, screenX, screenY, webkitRadiusX, webkitRadiusY, webkitRotationAngle, webkitForce);
239 }
240 static Touch _createTouch(receiver, window, target, identifier, pageX, pageY, screenX, screenY, webkitRadiusX, webkitRadiusY, webkitRotationAngle, webkitForce ) native;
241
242 TouchList createTouchList() {
243 return _createTouchList(this);
244 }
245 static TouchList _createTouchList(receiver) native;
246
237 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences) { 247 TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences) {
238 return _createTreeWalker(this, root, whatToShow, filter, expandEntityReferen ces); 248 return _createTreeWalker(this, root, whatToShow, filter, expandEntityReferen ces);
239 } 249 }
240 static TreeWalker _createTreeWalker(receiver, root, whatToShow, filter, expand EntityReferences) native; 250 static TreeWalker _createTreeWalker(receiver, root, whatToShow, filter, expand EntityReferences) native;
241 251
242 Element elementFromPoint(int x, int y) { 252 Element elementFromPoint(int x, int y) {
243 return _elementFromPoint(this, x, y); 253 return _elementFromPoint(this, x, y);
244 } 254 }
245 static Element _elementFromPoint(receiver, x, y) native; 255 static Element _elementFromPoint(receiver, x, y) native;
246 256
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after
335 static NodeList _querySelectorAll(receiver, selectors) native; 345 static NodeList _querySelectorAll(receiver, selectors) native;
336 346
337 void webkitCancelFullScreen() { 347 void webkitCancelFullScreen() {
338 _webkitCancelFullScreen(this); 348 _webkitCancelFullScreen(this);
339 return; 349 return;
340 } 350 }
341 static void _webkitCancelFullScreen(receiver) native; 351 static void _webkitCancelFullScreen(receiver) native;
342 352
343 String get typeName() { return "Document"; } 353 String get typeName() { return "Document"; }
344 } 354 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698