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

Unified Diff: client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart

Issue 8548010: Wrapper dom changes in preparation for SVG (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: tweak Created 9 years, 1 month 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/_TouchWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart b/client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart
index d48637162914d35bb1277b79a7b44c08b4d83d2d..b919e52e9bd9f20de54c6a6e4b54bad72f4a4374 100644
--- a/client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_TouchWrappingImplementation.dart
@@ -11,41 +11,41 @@ class _TouchWrappingImplementation extends DOMWrapperBase implements Touch {
return new _TouchWrappingImplementation();
}
- int get clientX() { return _get__Touch_clientX(this); }
- static int _get__Touch_clientX(var _this) native;
+ int get clientX() { return _get_clientX(this); }
+ static int _get_clientX(var _this) native;
- int get clientY() { return _get__Touch_clientY(this); }
- static int _get__Touch_clientY(var _this) native;
+ int get clientY() { return _get_clientY(this); }
+ static int _get_clientY(var _this) native;
- int get identifier() { return _get__Touch_identifier(this); }
- static int _get__Touch_identifier(var _this) native;
+ int get identifier() { return _get_identifier(this); }
+ static int _get_identifier(var _this) native;
- int get pageX() { return _get__Touch_pageX(this); }
- static int _get__Touch_pageX(var _this) native;
+ int get pageX() { return _get_pageX(this); }
+ static int _get_pageX(var _this) native;
- int get pageY() { return _get__Touch_pageY(this); }
- static int _get__Touch_pageY(var _this) native;
+ int get pageY() { return _get_pageY(this); }
+ static int _get_pageY(var _this) native;
- int get screenX() { return _get__Touch_screenX(this); }
- static int _get__Touch_screenX(var _this) native;
+ int get screenX() { return _get_screenX(this); }
+ static int _get_screenX(var _this) native;
- int get screenY() { return _get__Touch_screenY(this); }
- static int _get__Touch_screenY(var _this) native;
+ int get screenY() { return _get_screenY(this); }
+ static int _get_screenY(var _this) native;
- EventTarget get target() { return _get__Touch_target(this); }
- static EventTarget _get__Touch_target(var _this) native;
+ EventTarget get target() { return _get_target(this); }
+ static EventTarget _get_target(var _this) native;
- num get webkitForce() { return _get__Touch_webkitForce(this); }
- static num _get__Touch_webkitForce(var _this) native;
+ num get webkitForce() { return _get_webkitForce(this); }
+ static num _get_webkitForce(var _this) native;
- int get webkitRadiusX() { return _get__Touch_webkitRadiusX(this); }
- static int _get__Touch_webkitRadiusX(var _this) native;
+ int get webkitRadiusX() { return _get_webkitRadiusX(this); }
+ static int _get_webkitRadiusX(var _this) native;
- int get webkitRadiusY() { return _get__Touch_webkitRadiusY(this); }
- static int _get__Touch_webkitRadiusY(var _this) native;
+ int get webkitRadiusY() { return _get_webkitRadiusY(this); }
+ static int _get_webkitRadiusY(var _this) native;
- num get webkitRotationAngle() { return _get__Touch_webkitRotationAngle(this); }
- static num _get__Touch_webkitRotationAngle(var _this) native;
+ num get webkitRotationAngle() { return _get_webkitRotationAngle(this); }
+ static num _get_webkitRotationAngle(var _this) native;
String get typeName() { return "Touch"; }
}

Powered by Google App Engine
This is Rietveld 408576698