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; |
| (...skipping 15 matching lines...) Expand all Loading... | |
| 26 int wheelDelta; | 26 int wheelDelta; |
| 27 | 27 |
| 28 int wheelDeltaX; | 28 int wheelDeltaX; |
| 29 | 29 |
| 30 int wheelDeltaY; | 30 int wheelDeltaY; |
| 31 | 31 |
| 32 int x; | 32 int x; |
| 33 | 33 |
| 34 int y; | 34 int y; |
| 35 | 35 |
| 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; | 36 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) native; |
| 37 } | 37 } |
| OLD | NEW |