Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 class TouchEvent extends UIEvent native "TouchEvent" { | |
| 3 | |
| 4 bool altKey; | |
| 5 | |
| 6 TouchList changedTouches; | |
| 7 | |
| 8 bool ctrlKey; | |
| 9 | |
| 10 bool metaKey; | |
| 11 | |
| 12 bool shiftKey; | |
| 13 | |
| 14 TouchList targetTouches; | |
| 15 | |
| 16 TouchList touches; | |
| 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; | |
| 19 } | |
| OLD | NEW |