Searched defs:changedTouches (Results 1 - 4 of 4) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/events/
H A DTouchEventContext.h47 TouchList& changedTouches() { return *m_changedTouches; } function in class:blink::TouchEventContext
H A DTouchEvent.cpp43 TouchList* changedTouches, const AtomicString& type,
50 , m_changedTouches(changedTouches)
59 TouchList* changedTouches, const AtomicString& type,
75 m_changedTouches = changedTouches;
42 TouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
58 initTouchEvent(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, int, int, int, int, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey) argument
H A DTouchEvent.h46 TouchList* targetTouches, TouchList* changedTouches,
50 return adoptRefWillBeNoop(new TouchEvent(touches, targetTouches, changedTouches, type, view,
55 TouchList* changedTouches, const AtomicString& type,
62 TouchList* changedTouches() const { return m_changedTouches.get(); } function in class:blink::FINAL
66 void setChangedTouches(PassRefPtrWillBeRawPtr<TouchList> changedTouches) { m_changedTouches = changedTouches; } argument
79 TouchList* changedTouches, const AtomicString& type,
45 create(TouchList* touches, TouchList* targetTouches, TouchList* changedTouches, const AtomicString& type, PassRefPtrWillBeRawPtr<AbstractView> view, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, bool cancelable) argument
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp3630 // 'changedTouches' attributes in the JS event. See
3642 // Array of touches per state, used to assemble the 'changedTouches' list.
3650 } changedTouches[PlatformTouchPoint::TouchStateEnd]; local
3721 // cancelled it will only appear in the changedTouches list.
3727 // Now build up the correct list for changedTouches.
3730 // never be in the changedTouches list so we do not handle them
3735 if (!changedTouches[pointState].m_touches)
3736 changedTouches[pointState].m_touches = TouchList::create();
3737 changedTouches[pointState].m_touches->append(touch);
3738 changedTouches[pointStat
[all...]

Completed in 332 milliseconds