HomeSort by relevance Sort by last modified time
    Searched refs:PlatformTouchPoint (Results 1 - 7 of 7) sorted by null

  /external/chromium_org/third_party/WebKit/Source/platform/
PlatformTouchEvent.h 24 #include "platform/PlatformTouchPoint.h"
37 const Vector<PlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
42 Vector<PlatformTouchPoint> m_touchPoints;
PlatformTouchPoint.h 30 class PlatformTouchPoint {
42 PlatformTouchPoint()
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorInputAgent.cpp 44 #include "platform/PlatformTouchPoint.h"
53 class SyntheticInspectorTouchPoint : public WebCore::PlatformTouchPoint {
76 void append(const WebCore::PlatformTouchPoint& point)
245 PlatformTouchPoint::State convertedState;
247 convertedState = PlatformTouchPoint::TouchPressed;
249 convertedState = PlatformTouchPoint::TouchReleased;
251 convertedState = PlatformTouchPoint::TouchMoved;
253 convertedState = PlatformTouchPoint::TouchStationary;
255 convertedState = PlatformTouchPoint::TouchCancelled;
InspectorDOMAgent.cpp 177 const Vector<PlatformTouchPoint>& points = event.touchPoints();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
WebInputEventConversion.h 85 // Converts a WebTouchPoint to a WebCore::PlatformTouchPoint.
86 class PlatformTouchPointBuilder : public WebCore::PlatformTouchPoint {
WebInputEventConversion.cpp 393 inline PlatformTouchPoint::State toPlatformTouchPointState(const WebTouchPoint::State state)
397 return PlatformTouchPoint::TouchReleased;
399 return PlatformTouchPoint::TouchPressed;
401 return PlatformTouchPoint::TouchMoved;
403 return PlatformTouchPoint::TouchStationary;
405 return PlatformTouchPoint::TouchCancelled;
409 return PlatformTouchPoint::TouchReleased;
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventHandler.cpp     [all...]

Completed in 242 milliseconds