Home | History | Annotate | Download | only in chromium

Lines Matching refs:touchPoint

844     WebTouchPoint touchPoint;
845 touchPoint.state = WebTouchPoint::StatePressed;
846 touchPoint.position = WebPoint(arguments[0].toInt32(), arguments[1].toInt32());
847 touchPoint.screenPosition = touchPoint.position;
848 touchPoint.id = touchPoints.size();
849 touchPoints.append(touchPoint);
865 WebTouchPoint* touchPoint = &touchPoints[index];
866 touchPoint->state = WebTouchPoint::StateReleased;
898 WebTouchPoint* touchPoint = &touchPoints[index];
899 touchPoint->state = WebTouchPoint::StateMoved;
900 touchPoint->position = position;
901 touchPoint->screenPosition = position;
911 WebTouchPoint* touchPoint = &touchPoints[index];
912 touchPoint->state = WebTouchPoint::StateCancelled;
930 WebTouchPoint* touchPoint = &touchPoints[i];
931 if (touchPoint->state == WebTouchPoint::StateReleased) {
935 touchPoint->state = WebTouchPoint::StateStationary;