Home
last modified time | relevance | path

Searched refs:m_currentGestureLocation (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/testing/runner/
DEventSender.cpp361 m_currentGestureLocation = WebPoint(0, 0); in reset()
1288 m_currentGestureLocation = point; in gestureScrollFirstPoint()
1306 event.x = m_currentGestureLocation.x; in gestureEvent()
1307 event.y = m_currentGestureLocation.y; in gestureEvent()
1308 m_currentGestureLocation.x = m_currentGestureLocation.x + event.data.scrollUpdate.deltaX; in gestureEvent()
1309 m_currentGestureLocation.y = m_currentGestureLocation.y + event.data.scrollUpdate.deltaY; in gestureEvent()
1313 m_currentGestureLocation = WebPoint(point.x, point.y); in gestureEvent()
1314 event.x = m_currentGestureLocation.x; in gestureEvent()
1315 event.y = m_currentGestureLocation.y; in gestureEvent()
1319 event.x = m_currentGestureLocation.x; in gestureEvent()
[all …]
DEventSender.h198 blink::WebPoint m_currentGestureLocation; variable