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

/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageResourceLoadClient.cpp44 void InjectedBundlePageResourceLoadClient::willSendRequestForFrame(WebPage* page, WebFrame* frame, uint64_t identifier, ResourceRequest& request, const ResourceResponse& redirectResponse) function in class:WebKit::InjectedBundlePageResourceLoadClient
46 if (!m_client.willSendRequestForFrame)
49 RefPtr<WebURLRequest> returnedRequest = adoptRef(toImpl(m_client.willSendRequestForFrame(toAPI(page), toAPI(frame), identifier, toAPI(request), toAPI(redirectResponse), m_client.clientInfo)));
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h158 // willSendRequestForFrame is supposed to return a retained reference to the URL request.
159 WKBundlePageWillSendRequestForFrameCallback willSendRequestForFrame; member in struct:WKBundlePageResourceLoadClient
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.cpp197 willSendRequestForFrame,
366 WKURLRequestRef InjectedBundlePage::willSendRequestForFrame(WKBundlePageRef page, WKBundleFrameRef frame, uint64_t identifier, WKURLRequestRef request, WKURLResponseRef redirectResponse, const void* clientInfo) function in class:WTR::InjectedBundlePage
368 return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->willSendRequestForFrame(page, frame, identifier, request, redirectResponse);
656 WKURLRequestRef InjectedBundlePage::willSendRequestForFrame(WKBundlePageRef, WKBundleFrameRef, uint64_t, WKURLRequestRef request, WKURLResponseRef) function in class:WTR::InjectedBundlePage

Completed in 44 milliseconds