HomeSort by relevance Sort by last modified time
    Searched refs:didReceiveResponseForResource (Results 1 - 11 of 11) 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);
InjectedBundlePageResourceLoadClient.h 51 void didReceiveResponseForResource(WebPage*, WebFrame*, uint64_t identifier, const WebCore::ResourceResponse&);
  /external/webkit/Source/WebKit2/UIProcess/
WebResourceLoadClient.h 48 void didReceiveResponseForResource(WebPageProxy*, WebFrameProxy*, uint64_t resourceIdentifier, const WebCore::ResourceResponse&);
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.h 542 void didReceiveResponseForResource(uint64_t frameID, uint64_t resourceIdentifier, const WebCore::ResourceResponse&);
    [all...]
WebPageProxy.cpp     [all...]
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.h 68 static void didReceiveResponseForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLResponseRef, const void*);
92 void didReceiveResponseForResource(WKBundlePageRef, WKBundleFrameRef, uint64_t identifier, WKURLResponseRef);
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/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 161 WKBundlePageDidReceiveResponseForResourceCallback didReceiveResponseForResource;
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 146 WKPageDidReceiveResponseForResourceCallback didReceiveResponseForResource;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 221 webPage->injectedBundleResourceLoadClient().didReceiveResponseForResource(webPage, m_frame, identifier, response);
222 webPage->send(Messages::WebPageProxy::DidReceiveResponseForResource(m_frame->frameID(), identifier, response));
    [all...]

Completed in 1073 milliseconds