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

Side by Side Diff: client/html/generated/html/frog/WheelEvent.dart

Issue 9537001: Generate dart:html bindings for Dartium as well as Frog. All unittests now pass (or are disabled fo… (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 9 months 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
(Empty)
1
2 class _WheelEventImpl extends _UIEventImpl implements WheelEvent native "*WheelE vent" {
3
4 final bool altKey;
5
6 final int clientX;
7
8 final int clientY;
9
10 final bool ctrlKey;
11
12 final bool metaKey;
13
14 final int offsetX;
15
16 final int offsetY;
17
18 final int screenX;
19
20 final int screenY;
21
22 final bool shiftKey;
23
24 final bool webkitDirectionInvertedFromDevice;
25
26 final int wheelDelta;
27
28 final int wheelDeltaX;
29
30 final int wheelDeltaY;
31
32 final int x;
33
34 final int y;
35
36 void initWebKitWheelEvent(int wheelDeltaX, int wheelDeltaY, _WindowImpl view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, b ool shiftKey, bool metaKey) native;
37 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698