Home | History | Annotate | Download | only in page

Lines Matching refs:changedTouches

3503     // 'changedTouches' attributes in the JS event. See
3515 // Array of touches per state, used to assemble the 'changedTouches' list.
3523 } changedTouches[PlatformTouchPoint::TouchStateEnd];
3596 // cancelled it will only appear in the changedTouches list.
3602 // Now build up the correct list for changedTouches.
3605 // never be in the changedTouches list so we do not handle them
3610 if (!changedTouches[pointState].m_touches)
3611 changedTouches[pointState].m_touches = TouchList::create();
3612 changedTouches[pointState].m_touches->append(touch);
3613 changedTouches[pointState].m_targets.add(touchTarget);
3621 // Now iterate the changedTouches list and m_targets within it, sending
3625 if (!changedTouches[state].m_touches)
3629 const EventTargetSet& targetsForState = changedTouches[state].m_targets;
3633 touches.get(), touchesByTarget.get(touchEventTarget), changedTouches[state].m_touches.get(),