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

Unified Diff: client/dom/generated/src/wrapping/_WheelEventWrappingImplementation.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/_WheelEventWrappingImplementation.dart
diff --git a/client/dom/generated/src/wrapping/_WheelEventWrappingImplementation.dart b/client/dom/generated/src/wrapping/_WheelEventWrappingImplementation.dart
index 5e0d2becaf0922c5198a9fe1cb36e37be3076bac..f5330ef315eb75a900706b1783946d4b8ca56822 100644
--- a/client/dom/generated/src/wrapping/_WheelEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_WheelEventWrappingImplementation.dart
@@ -11,53 +11,53 @@ class _WheelEventWrappingImplementation extends _UIEventWrappingImplementation i
return new _WheelEventWrappingImplementation();
}
- bool get altKey() { return _get__WheelEvent_altKey(this); }
- static bool _get__WheelEvent_altKey(var _this) native;
+ bool get altKey() { return _get_altKey(this); }
+ static bool _get_altKey(var _this) native;
- int get clientX() { return _get__WheelEvent_clientX(this); }
- static int _get__WheelEvent_clientX(var _this) native;
+ int get clientX() { return _get_clientX(this); }
+ static int _get_clientX(var _this) native;
- int get clientY() { return _get__WheelEvent_clientY(this); }
- static int _get__WheelEvent_clientY(var _this) native;
+ int get clientY() { return _get_clientY(this); }
+ static int _get_clientY(var _this) native;
- bool get ctrlKey() { return _get__WheelEvent_ctrlKey(this); }
- static bool _get__WheelEvent_ctrlKey(var _this) native;
+ bool get ctrlKey() { return _get_ctrlKey(this); }
+ static bool _get_ctrlKey(var _this) native;
- bool get metaKey() { return _get__WheelEvent_metaKey(this); }
- static bool _get__WheelEvent_metaKey(var _this) native;
+ bool get metaKey() { return _get_metaKey(this); }
+ static bool _get_metaKey(var _this) native;
- int get offsetX() { return _get__WheelEvent_offsetX(this); }
- static int _get__WheelEvent_offsetX(var _this) native;
+ int get offsetX() { return _get_offsetX(this); }
+ static int _get_offsetX(var _this) native;
- int get offsetY() { return _get__WheelEvent_offsetY(this); }
- static int _get__WheelEvent_offsetY(var _this) native;
+ int get offsetY() { return _get_offsetY(this); }
+ static int _get_offsetY(var _this) native;
- int get screenX() { return _get__WheelEvent_screenX(this); }
- static int _get__WheelEvent_screenX(var _this) native;
+ int get screenX() { return _get_screenX(this); }
+ static int _get_screenX(var _this) native;
- int get screenY() { return _get__WheelEvent_screenY(this); }
- static int _get__WheelEvent_screenY(var _this) native;
+ int get screenY() { return _get_screenY(this); }
+ static int _get_screenY(var _this) native;
- bool get shiftKey() { return _get__WheelEvent_shiftKey(this); }
- static bool _get__WheelEvent_shiftKey(var _this) native;
+ bool get shiftKey() { return _get_shiftKey(this); }
+ static bool _get_shiftKey(var _this) native;
- bool get webkitDirectionInvertedFromDevice() { return _get__WheelEvent_webkitDirectionInvertedFromDevice(this); }
- static bool _get__WheelEvent_webkitDirectionInvertedFromDevice(var _this) native;
+ bool get webkitDirectionInvertedFromDevice() { return _get_webkitDirectionInvertedFromDevice(this); }
+ static bool _get_webkitDirectionInvertedFromDevice(var _this) native;
- int get wheelDelta() { return _get__WheelEvent_wheelDelta(this); }
- static int _get__WheelEvent_wheelDelta(var _this) native;
+ int get wheelDelta() { return _get_wheelDelta(this); }
+ static int _get_wheelDelta(var _this) native;
- int get wheelDeltaX() { return _get__WheelEvent_wheelDeltaX(this); }
- static int _get__WheelEvent_wheelDeltaX(var _this) native;
+ int get wheelDeltaX() { return _get_wheelDeltaX(this); }
+ static int _get_wheelDeltaX(var _this) native;
- int get wheelDeltaY() { return _get__WheelEvent_wheelDeltaY(this); }
- static int _get__WheelEvent_wheelDeltaY(var _this) native;
+ int get wheelDeltaY() { return _get_wheelDeltaY(this); }
+ static int _get_wheelDeltaY(var _this) native;
- int get x() { return _get__WheelEvent_x(this); }
- static int _get__WheelEvent_x(var _this) native;
+ int get x() { return _get_x(this); }
+ static int _get_x(var _this) native;
- int get y() { return _get__WheelEvent_y(this); }
- static int _get__WheelEvent_y(var _this) native;
+ int get y() { return _get_y(this); }
+ static int _get_y(var _this) native;
void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) {
_initWebKitWheelEvent(this, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey);

Powered by Google App Engine
This is Rietveld 408576698