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

Unified 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 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 6f3df589ce63688d66631dbddc6c2a19e247600c..14deac7c85064de408f36d92ca72f4d89d003cb4 100644
--- a/client/dom/generated/src/wrapping/_DocumentWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_DocumentWrappingImplementation.dart
@@ -234,6 +234,16 @@ class _DocumentWrappingImplementation extends _NodeWrappingImplementation implem
}
static Text _createTextNode(receiver, data) native;
+ Touch createTouch(DOMWindow window, EventTarget target, int identifier, int pageX, int pageY, int screenX, int screenY, int webkitRadiusX, int webkitRadiusY, num webkitRotationAngle, num webkitForce) {
+ return _createTouch(this, window, target, identifier, pageX, pageY, screenX, screenY, webkitRadiusX, webkitRadiusY, webkitRotationAngle, webkitForce);
+ }
+ static Touch _createTouch(receiver, window, target, identifier, pageX, pageY, screenX, screenY, webkitRadiusX, webkitRadiusY, webkitRotationAngle, webkitForce) native;
+
+ TouchList createTouchList() {
+ return _createTouchList(this);
+ }
+ static TouchList _createTouchList(receiver) native;
+
TreeWalker createTreeWalker(Node root, int whatToShow, NodeFilter filter, bool expandEntityReferences) {
return _createTreeWalker(this, root, whatToShow, filter, expandEntityReferences);
}

Powered by Google App Engine
This is Rietveld 408576698