• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.9.5/WebKit2-7537.78.2/UIProcess/CoordinatedGraphics/

Lines Matching refs:view

41 void WebViewClient::viewNeedsDisplay(WebView* view, const IntRect& area)
46 m_client.viewNeedsDisplay(toAPI(view), toAPI(area), m_client.clientInfo);
49 void WebViewClient::didChangeContentsSize(WebView* view, const IntSize& size)
54 m_client.didChangeContentsSize(toAPI(view), toAPI(size), m_client.clientInfo);
57 void WebViewClient::webProcessCrashed(WebView* view, const String& url)
62 m_client.webProcessCrashed(toAPI(view), adoptWK(toCopiedURLAPI(url)).get(), m_client.clientInfo);
65 void WebViewClient::webProcessDidRelaunch(WebView* view)
70 m_client.webProcessDidRelaunch(toAPI(view), m_client.clientInfo);
73 void WebViewClient::didChangeContentsPosition(WebView* view, const WebCore::IntPoint& point)
78 m_client.didChangeContentsPosition(toAPI(view), toAPI(point), m_client.clientInfo);
81 void WebViewClient::didRenderFrame(WebView* view, const WebCore::IntSize& size, const WebCore::IntRect& coveredRect)
86 m_client.didRenderFrame(toAPI(view), toAPI(size), toAPI(coveredRect), m_client.clientInfo);
89 void WebViewClient::didCompletePageTransition(WebView* view)
94 m_client.didCompletePageTransition(toAPI(view), m_client.clientInfo);
97 void WebViewClient::didChangeViewportAttributes(WebView* view, const ViewportAttributes& attributes)
103 m_client.didChangeViewportAttributes(toAPI(view), wkAttributes.get(), m_client.clientInfo);
106 void WebViewClient::didChangeTooltip(WebView* view, const String& tooltip)
111 m_client.didChangeTooltip(toAPI(view), adoptWK(toCopiedAPI(tooltip)).get(), m_client.clientInfo);