Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 class WheelEvent extends UIEvent native "WheelEvent" { | |
| 3 | |
| 4 bool altKey; | |
| 5 | |
| 6 int clientX; | |
| 7 | |
| 8 int clientY; | |
| 9 | |
| 10 bool ctrlKey; | |
| 11 | |
| 12 bool metaKey; | |
| 13 | |
| 14 int offsetX; | |
| 15 | |
| 16 int offsetY; | |
| 17 | |
| 18 int screenX; | |
| 19 | |
| 20 int screenY; | |
| 21 | |
| 22 bool shiftKey; | |
| 23 | |
| 24 int wheelDelta; | |
| 25 | |
| 26 int wheelDeltaX; | |
| 27 | |
| 28 int wheelDeltaY; | |
| 29 | |
| 30 int x; | |
| 31 | |
| 32 int y; | |
| 33 | |
| 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; | |
| 35 } | |
| OLD | NEW |