HomeSort by relevance Sort by last modified time
    Searched defs:didReceiveResponseForResource (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageResourceLoadClient.cpp 56 void InjectedBundlePageResourceLoadClient::didReceiveResponseForResource(WebPage* page, WebFrame* frame, uint64_t identifier, const WebCore::ResourceResponse& response)
58 if (!m_client.didReceiveResponseForResource)
61 m_client.didReceiveResponseForResource(toAPI(page), toAPI(frame), identifier, toAPI(response), m_client.clientInfo);
  /external/webkit/Source/WebKit2/UIProcess/
WebResourceLoadClient.cpp 58 void WebResourceLoadClient::didReceiveResponseForResource(WebPageProxy* page, WebFrameProxy* frame, uint64_t resourceIdentifier, const ResourceResponse& resourceResponse)
60 if (!m_client.didReceiveResponseForResource)
64 return m_client.didReceiveResponseForResource(toAPI(page), toAPI(frame), resourceIdentifier, toAPI(response.get()), m_client.clientInfo);
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 161 WKBundlePageDidReceiveResponseForResourceCallback didReceiveResponseForResource;
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.cpp 198 didReceiveResponseForResource,
371 void InjectedBundlePage::didReceiveResponseForResource(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, WKURLResponseRef response, const void* clientInfo)
373 static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didReceiveResponseForResource(page, frame, identifier, response);
677 void InjectedBundlePage::didReceiveResponseForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t, WKURLResponseRef)
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 146 WKPageDidReceiveResponseForResourceCallback didReceiveResponseForResource;

Completed in 50 milliseconds