Home
last modified time | relevance | path

Searched refs:PlatformTouchPoint (Results 1 – 8 of 8) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorInputAgent.cpp52 class SyntheticInspectorTouchPoint : public WebCore::PlatformTouchPoint {
76 void append(const WebCore::PlatformTouchPoint& point) in append()
246 PlatformTouchPoint::State convertedState; in dispatchTouchEvent()
248 convertedState = PlatformTouchPoint::TouchPressed; in dispatchTouchEvent()
250 convertedState = PlatformTouchPoint::TouchReleased; in dispatchTouchEvent()
252 convertedState = PlatformTouchPoint::TouchMoved; in dispatchTouchEvent()
254 convertedState = PlatformTouchPoint::TouchStationary; in dispatchTouchEvent()
256 convertedState = PlatformTouchPoint::TouchCancelled; in dispatchTouchEvent()
DInspectorDOMAgent.cpp174 const Vector<PlatformTouchPoint>& points = event.touchPoints(); in hoveredNodeForEvent()
/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformTouchEvent.h36 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; } in touchPoints()
39 Vector<PlatformTouchPoint> m_touchPoints;
DPlatformTouchPoint.h30 class PlatformTouchPoint {
42 PlatformTouchPoint() in PlatformTouchPoint() function
Dblink_platform.gypi96 'PlatformTouchPoint.h',
/external/chromium_org/third_party/WebKit/Source/core/page/
DEventHandler.cpp179 class SyntheticTouchPoint : public PlatformTouchPoint {
3559 static const AtomicString& eventNameForTouchPointState(PlatformTouchPoint::State state) in eventNameForTouchPointState()
3562 case PlatformTouchPoint::TouchReleased: in eventNameForTouchPointState()
3564 case PlatformTouchPoint::TouchCancelled: in eventNameForTouchPointState()
3566 case PlatformTouchPoint::TouchPressed: in eventNameForTouchPointState()
3568 case PlatformTouchPoint::TouchMoved: in eventNameForTouchPointState()
3570 case PlatformTouchPoint::TouchStationary: in eventNameForTouchPointState()
3614 } changedTouches[PlatformTouchPoint::TouchStateEnd]; in handleTouchEvent()
3616 const Vector<PlatformTouchPoint>& points = event.touchPoints(); in handleTouchEvent()
3624 const PlatformTouchPoint& point = points[i]; in handleTouchEvent()
[all …]
/external/chromium_org/third_party/WebKit/Source/web/
DWebInputEventConversion.cpp371 inline PlatformTouchPoint::State toPlatformTouchPointState(const WebTouchPoint::State state) in toPlatformTouchPointState()
375 return PlatformTouchPoint::TouchReleased; in toPlatformTouchPointState()
377 return PlatformTouchPoint::TouchPressed; in toPlatformTouchPointState()
379 return PlatformTouchPoint::TouchMoved; in toPlatformTouchPointState()
381 return PlatformTouchPoint::TouchStationary; in toPlatformTouchPointState()
383 return PlatformTouchPoint::TouchCancelled; in toPlatformTouchPointState()
387 return PlatformTouchPoint::TouchReleased; in toPlatformTouchPointState()
DWebInputEventConversion.h86 class PlatformTouchPointBuilder : public WebCore::PlatformTouchPoint {