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

/external/chromium_org/third_party/WebKit/Source/core/page/
H A DEventHandler.cpp2695 bool EventHandler::bestClickableNodeForTouchPoint(const IntPoint& touchCenter, const IntSize& touchRadius, IntPoint& targetPoint, Node*& targetNode) argument
2697 IntPoint hitTestPoint = m_frame->view()->windowToContents(touchCenter);
2706 IntRect touchRect(touchCenter - touchRadius, touchRadius + touchRadius);
2717 bool success = findBestClickableCandidate(targetNode, targetPoint, touchCenter, touchRect, Vector<RefPtr<Node> > (nodes));
2723 bool EventHandler::bestContextMenuNodeForTouchPoint(const IntPoint& touchCenter, const IntSize& touchRadius, IntPoint& targetPoint, Node*& targetNode) argument
2725 IntPoint hitTestPoint = m_frame->view()->windowToContents(touchCenter);
2728 IntRect touchRect(touchCenter - touchRadius, touchRadius + touchRadius);
2734 return findBestContextMenuCandidate(targetNode, targetPoint, touchCenter, touchRect, Vector<RefPtr<Node> >(nodes));
2737 bool EventHandler::bestZoomableAreaForTouchPoint(const IntPoint& touchCenter, const IntSize& touchRadius, IntRect& targetArea, Node*& targetNode) argument
2739 IntPoint hitTestPoint = m_frame->view()->windowToContents(touchCenter);
[all...]

Completed in 120 milliseconds