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

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

Issue 8574040: Support DOMString[] and regenerate from IDL (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix Window.postMessage 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 5123b250b245a9c01dc68650089aede657c2dd6e..1655bf4777169876b96a8677a93e1734bd3229bd 100644
--- a/client/dom/generated/src/wrapping/_WheelEventWrappingImplementation.dart
+++ b/client/dom/generated/src/wrapping/_WheelEventWrappingImplementation.dart
@@ -41,6 +41,9 @@ class _WheelEventWrappingImplementation extends _UIEventWrappingImplementation i
bool get shiftKey() { return _get__WheelEvent_shiftKey(this); }
static bool _get__WheelEvent_shiftKey(var _this) native;
+ bool get webkitDirectionInvertedFromDevice() { return _get__WheelEvent_webkitDirectionInvertedFromDevice(this); }
+ static bool _get__WheelEvent_webkitDirectionInvertedFromDevice(var _this) native;
+
int get wheelDelta() { return _get__WheelEvent_wheelDelta(this); }
static int _get__WheelEvent_wheelDelta(var _this) native;
@@ -56,11 +59,11 @@ class _WheelEventWrappingImplementation extends _UIEventWrappingImplementation i
int get y() { return _get__WheelEvent_y(this); }
static int _get__WheelEvent_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);
+ void initWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) {
+ _initWheelEvent(this, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey);
return;
}
- static void _initWebKitWheelEvent(receiver, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) native;
+ static void _initWheelEvent(receiver, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) native;
String get typeName() { return "WheelEvent"; }
}

Powered by Google App Engine
This is Rietveld 408576698