Searched refs:WebPlatformTouchPoint (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebKit2/Shared/
H A DWebPlatformTouchPoint.cpp38 WebPlatformTouchPoint::WebPlatformTouchPoint(unsigned id, TouchPointState state, const IntPoint& screenPosition, const IntPoint& position) function in class:WebKit::WebPlatformTouchPoint
46 void WebPlatformTouchPoint::encode(CoreIPC::ArgumentEncoder* encoder) const
51 bool WebPlatformTouchPoint::decode(CoreIPC::ArgumentDecoder* decoder, WebPlatformTouchPoint& t)
H A DWebTouchEvent.cpp36 WebTouchEvent::WebTouchEvent(WebEvent::Type type, Vector<WebPlatformTouchPoint> touchPoints, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers modifiers, double timestamp)
H A DWebEventConversion.cpp203 WebKit2PlatformTouchPoint(const WebPlatformTouchPoint& webTouchPoint)
208 case WebPlatformTouchPoint::TouchReleased:
211 case WebPlatformTouchPoint::TouchPressed:
214 case WebPlatformTouchPoint::TouchMoved:
217 case WebPlatformTouchPoint::TouchStationary:
220 case WebPlatformTouchPoint::TouchCancelled:
H A DWebEvent.h273 class WebPlatformTouchPoint { class in namespace:WebKit
283 WebPlatformTouchPoint() { } function in class:WebKit::WebPlatformTouchPoint
285 WebPlatformTouchPoint(uint32_t id, TouchPointState, const WebCore::IntPoint& screenPosition, const WebCore::IntPoint& position);
296 static bool decode(CoreIPC::ArgumentDecoder*, WebPlatformTouchPoint&);
312 WebTouchEvent(Type, Vector<WebPlatformTouchPoint>, bool ctrlKey, bool altKey, bool shiftKey, bool metaKey, Modifiers, double timestamp);
314 const Vector<WebPlatformTouchPoint>& touchPoints() const { return m_touchPoints; }
322 Vector<WebPlatformTouchPoint> m_touchPoints;
/external/webkit/Source/WebKit2/Shared/qt/
H A DWebEventFactoryQt.cpp170 WebPlatformTouchPoint::TouchPointState state = static_cast<WebPlatformTouchPoint::TouchPointState>(0);
177 Vector<WebPlatformTouchPoint> m_touchPoints;
182 state = WebPlatformTouchPoint::TouchReleased;
185 state = WebPlatformTouchPoint::TouchMoved;
188 state = WebPlatformTouchPoint::TouchPressed;
191 state = WebPlatformTouchPoint::TouchStationary;
198 m_touchPoints.append(WebPlatformTouchPoint(id, state, points.at(i).screenPos().toPoint(), points.at(i).pos().toPoint()));

Completed in 87 milliseconds