Chromium Code Reviews| OLD | NEW |
|---|---|
| 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 } |
| OLD | NEW |