• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/

Lines Matching refs:point

1571 void WebPage::pageDidRequestScroll(const IntPoint& point)
1573 send(Messages::WebPageProxy::PageDidRequestScroll(point));
1585 WebContextMenu* WebPage::contextMenuAtPointInWindow(const IntPoint& point)
1590 PlatformMouseEvent mouseEvent(point, point, RightButton, PlatformEvent::MousePressed, 1, false, false, false, false, currentTime());
1645 IntPoint point = page->corePage()->mainFrame()->view()->windowToContents(platformMouseEvent.position());
1646 HitTestResult result = page->corePage()->mainFrame()->eventHandler()->hitTestResultAtPoint(point);
1929 void WebPage::highlightPotentialActivation(const IntPoint& point, const IntSize& area)
1931 if (point == IntPoint::zero()) {
1932 // An empty point deactivates the highlighting.
1941 if (!mainframe->eventHandler()->bestClickableNodeForTouchPoint(point, IntSize(area.width() / 2, area.height() / 2), adjustedPoint, adjustedNode))
1945 HitTestResult result = mainframe->eventHandler()->hitTestResultAtPoint(mainframe->view()->windowToContents(point), HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::IgnoreClipping | HitTestRequest::DisallowShadowContent);
2229 IntPoint WebPage::screenToWindow(const IntPoint& point)
2232 sendSync(Messages::WebPageProxy::ScreenToWindow(point), Messages::WebPageProxy::ScreenToWindow::Reply(windowPoint));
3242 void WebPage::findZoomableAreaForPoint(const WebCore::IntPoint& point, const WebCore::IntSize& area)
3246 bool foundAreaForTouchPoint = m_mainFrame->coreFrame()->eventHandler()->bestZoomableAreaForTouchPoint(point, IntSize(area.width() / 2, area.height() / 2), zoomableArea, node);
3256 send(Messages::WebPageProxy::DidFindZoomableArea(point, zoomableArea));
3260 void WebPage::findZoomableAreaForPoint(const WebCore::IntPoint& point, const WebCore::IntSize& area)
3264 HitTestResult result = mainframe->eventHandler()->hitTestResultAtPoint(mainframe->view()->windowToContents(point), HitTestRequest::ReadOnly | HitTestRequest::Active | HitTestRequest::IgnoreClipping | HitTestRequest::DisallowShadowContent);
3295 send(Messages::WebPageProxy::DidFindZoomableArea(point, zoomableArea));