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

Side by Side 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 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 _WheelEventWrappingImplementation extends _UIEventWrappingImplementation i mplements WheelEvent { 7 class _WheelEventWrappingImplementation extends _UIEventWrappingImplementation i mplements WheelEvent {
8 _WheelEventWrappingImplementation() : super() {} 8 _WheelEventWrappingImplementation() : super() {}
9 9
10 static create__WheelEventWrappingImplementation() native { 10 static create__WheelEventWrappingImplementation() native {
(...skipping 23 matching lines...) Expand all
34 34
35 int get screenX() { return _get__WheelEvent_screenX(this); } 35 int get screenX() { return _get__WheelEvent_screenX(this); }
36 static int _get__WheelEvent_screenX(var _this) native; 36 static int _get__WheelEvent_screenX(var _this) native;
37 37
38 int get screenY() { return _get__WheelEvent_screenY(this); } 38 int get screenY() { return _get__WheelEvent_screenY(this); }
39 static int _get__WheelEvent_screenY(var _this) native; 39 static int _get__WheelEvent_screenY(var _this) native;
40 40
41 bool get shiftKey() { return _get__WheelEvent_shiftKey(this); } 41 bool get shiftKey() { return _get__WheelEvent_shiftKey(this); }
42 static bool _get__WheelEvent_shiftKey(var _this) native; 42 static bool _get__WheelEvent_shiftKey(var _this) native;
43 43
44 bool get webkitDirectionInvertedFromDevice() { return _get__WheelEvent_webkitD irectionInvertedFromDevice(this); }
45 static bool _get__WheelEvent_webkitDirectionInvertedFromDevice(var _this) nati ve;
46
44 int get wheelDelta() { return _get__WheelEvent_wheelDelta(this); } 47 int get wheelDelta() { return _get__WheelEvent_wheelDelta(this); }
45 static int _get__WheelEvent_wheelDelta(var _this) native; 48 static int _get__WheelEvent_wheelDelta(var _this) native;
46 49
47 int get wheelDeltaX() { return _get__WheelEvent_wheelDeltaX(this); } 50 int get wheelDeltaX() { return _get__WheelEvent_wheelDeltaX(this); }
48 static int _get__WheelEvent_wheelDeltaX(var _this) native; 51 static int _get__WheelEvent_wheelDeltaX(var _this) native;
49 52
50 int get wheelDeltaY() { return _get__WheelEvent_wheelDeltaY(this); } 53 int get wheelDeltaY() { return _get__WheelEvent_wheelDeltaY(this); }
51 static int _get__WheelEvent_wheelDeltaY(var _this) native; 54 static int _get__WheelEvent_wheelDeltaY(var _this) native;
52 55
53 int get x() { return _get__WheelEvent_x(this); } 56 int get x() { return _get__WheelEvent_x(this); }
54 static int _get__WheelEvent_x(var _this) native; 57 static int _get__WheelEvent_x(var _this) native;
55 58
56 int get y() { return _get__WheelEvent_y(this); } 59 int get y() { return _get__WheelEvent_y(this); }
57 static int _get__WheelEvent_y(var _this) native; 60 static int _get__WheelEvent_y(var _this) native;
58 61
59 void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, in t screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, boo l shiftKey, bool metaKey) { 62 void initWheelEvent(int wheelDeltaX, int wheelDeltaY, DOMWindow view, int scre enX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shif tKey, bool metaKey) {
60 _initWebKitWheelEvent(this, wheelDeltaX, wheelDeltaY, view, screenX, screenY , clientX, clientY, ctrlKey, altKey, shiftKey, metaKey); 63 _initWheelEvent(this, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clie ntX, clientY, ctrlKey, altKey, shiftKey, metaKey);
61 return; 64 return;
62 } 65 }
63 static void _initWebKitWheelEvent(receiver, wheelDeltaX, wheelDeltaY, view, sc reenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) native; 66 static void _initWheelEvent(receiver, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) native;
64 67
65 String get typeName() { return "WheelEvent"; } 68 String get typeName() { return "WheelEvent"; }
66 } 69 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698