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

Side by Side Diff: client/dom/generated/src/frog/WheelEvent.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 1
2 class WheelEvent extends UIEvent native "WheelEvent" { 2 class WheelEvent extends UIEvent native "WheelEvent" {
3 3
4 bool altKey; 4 bool altKey;
5 5
6 int clientX; 6 int clientX;
7 7
8 int clientY; 8 int clientY;
9 9
10 bool ctrlKey; 10 bool ctrlKey;
11 11
12 bool metaKey; 12 bool metaKey;
13 13
14 int offsetX; 14 int offsetX;
15 15
16 int offsetY; 16 int offsetY;
17 17
18 int screenX; 18 int screenX;
19 19
20 int screenY; 20 int screenY;
21 21
22 bool shiftKey; 22 bool shiftKey;
23 23
24 bool webkitDirectionInvertedFromDevice;
25
24 int wheelDelta; 26 int wheelDelta;
25 27
26 int wheelDeltaX; 28 int wheelDeltaX;
27 29
28 int wheelDeltaY; 30 int wheelDeltaY;
29 31
30 int x; 32 int x;
31 33
32 int y; 34 int y;
33 35
34 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) native; 36 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) native;
35 } 37 }
OLDNEW
« no previous file with comments | « client/dom/generated/src/frog/WebSocket.dart ('k') | client/dom/generated/src/frog/XMLHttpRequest.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698