Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 | |
| 2 class _TouchEventImpl extends _UIEventImpl implements TouchEvent native "*TouchE vent" { | |
| 3 | |
| 4 final bool altKey; | |
| 5 | |
| 6 final _TouchListImpl changedTouches; | |
| 7 | |
| 8 final bool ctrlKey; | |
| 9 | |
| 10 final bool metaKey; | |
| 11 | |
| 12 final bool shiftKey; | |
| 13 | |
| 14 final _TouchListImpl targetTouches; | |
| 15 | |
| 16 final _TouchListImpl touches; | |
| 17 | |
| 18 void initTouchEvent(_TouchListImpl touches, _TouchListImpl targetTouches, _Tou chListImpl changedTouches, String type, _WindowImpl view, int screenX, int scree nY, int clientX, int clientY, bool ctrlKey, bool altKey, bool shiftKey, bool met aKey) native; | |
| 19 } | |
| OLD | NEW |