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

Side by Side Diff: client/dom/generated/src/wrapping/_WheelEventWrappingImplementation.dart

Issue 8583003: Changes initWheelEvent to initWebKitWheelEvent (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 int get wheelDeltaY() { return _get__WheelEvent_wheelDeltaY(this); } 50 int get wheelDeltaY() { return _get__WheelEvent_wheelDeltaY(this); }
51 static int _get__WheelEvent_wheelDeltaY(var _this) native; 51 static int _get__WheelEvent_wheelDeltaY(var _this) native;
52 52
53 int get x() { return _get__WheelEvent_x(this); } 53 int get x() { return _get__WheelEvent_x(this); }
54 static int _get__WheelEvent_x(var _this) native; 54 static int _get__WheelEvent_x(var _this) native;
55 55
56 int get y() { return _get__WheelEvent_y(this); } 56 int get y() { return _get__WheelEvent_y(this); }
57 static int _get__WheelEvent_y(var _this) native; 57 static int _get__WheelEvent_y(var _this) native;
58 58
59 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) { 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) {
60 _initWheelEvent(this, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clie ntX, clientY, ctrlKey, altKey, shiftKey, metaKey); 60 _initWebKitWheelEvent(this, wheelDeltaX, wheelDeltaY, view, screenX, screenY , clientX, clientY, ctrlKey, altKey, shiftKey, metaKey);
61 return; 61 return;
62 } 62 }
63 static void _initWheelEvent(receiver, wheelDeltaX, wheelDeltaY, view, screenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) native; 63 static void _initWebKitWheelEvent(receiver, wheelDeltaX, wheelDeltaY, view, sc reenX, screenY, clientX, clientY, ctrlKey, altKey, shiftKey, metaKey) native;
64 64
65 String get typeName() { return "WheelEvent"; } 65 String get typeName() { return "WheelEvent"; }
66 } 66 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/interface/WheelEvent.dart ('k') | client/dom/generated/wrapping_dom.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698