Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 | 1 |
| 2 class TouchEvent extends UIEvent native "TouchEvent" { | 2 class TouchEvent extends UIEvent native "*TouchEvent" { |
| 3 | 3 |
| 4 bool altKey; | 4 bool altKey; |
| 5 | 5 |
| 6 TouchList changedTouches; | 6 TouchList changedTouches; |
| 7 | 7 |
| 8 bool ctrlKey; | 8 bool ctrlKey; |
| 9 | 9 |
| 10 bool metaKey; | 10 bool metaKey; |
| 11 | 11 |
| 12 bool shiftKey; | 12 bool shiftKey; |
| 13 | 13 |
| 14 TouchList targetTouches; | 14 TouchList targetTouches; |
| 15 | 15 |
| 16 TouchList touches; | 16 TouchList touches; |
| 17 | 17 |
| 18 void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList chan gedTouches, String type, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) native; | 18 void initTouchEvent(TouchList touches, TouchList targetTouches, TouchList chan gedTouches, String type, DOMWindow view, int screenX, int screenY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) native; |
| 19 } | 19 } |
| OLD | NEW |