HomeSort by relevance Sort by last modified time
    Searched refs:decidePolicyForResponse (Results 1 - 14 of 14) sorted by null

  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
AboutBlankLoad.cpp 36 static void decidePolicyForResponse(WKPageRef, WKFrameRef, WKURLResponseRef response, WKURLRequestRef, WKFramePolicyListenerRef listener, WKTypeRef, const void*)
52 policyClient.decidePolicyForResponse = decidePolicyForResponse;
PageLoadBasic.cpp 106 static void decidePolicyForResponse(WKPageRef page, WKFrameRef frame, WKURLResponseRef response, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
135 policyClient.decidePolicyForResponse = decidePolicyForResponse;
  /external/webkit/Source/WebKit2/UIProcess/
WebPolicyClient.cpp 59 bool WebPolicyClient::decidePolicyForResponse(WebPageProxy* page, WebFrameProxy* frame, const ResourceResponse& resourceResponse, const ResourceRequest& resourceRequest, WebFramePolicyListenerProxy* listener, APIObject* userData)
61 if (!m_client.decidePolicyForResponse)
67 m_client.decidePolicyForResponse(toAPI(page), toAPI(frame), toAPI(response.get()), toAPI(request.get()), toAPI(listener), toAPI(userData), m_client.clientInfo);
WebPolicyClient.h 52 bool decidePolicyForResponse(WebPageProxy*, WebFrameProxy*, const WebCore::ResourceResponse&, const WebCore::ResourceRequest&, WebFramePolicyListenerProxy*, APIObject* userData);
WebPageProxy.h 534 void decidePolicyForResponse(uint64_t frameID, const WebCore::ResourceResponse&, const WebCore::ResourceRequest&, uint64_t listenerID, CoreIPC::ArgumentDecoder* arguments, bool& receivedPolicyAction, uint64_t& policyAction, uint64_t& downloadID);
    [all...]
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePagePolicyClient.cpp 63 WKBundlePagePolicyAction InjectedBundlePagePolicyClient::decidePolicyForResponse(WebPage* page, WebFrame* frame, const ResourceResponse& resourceResponse, const ResourceRequest& resourceRequest, RefPtr<APIObject>& userData)
65 if (!m_client.decidePolicyForResponse)
72 WKBundlePagePolicyAction policy = m_client.decidePolicyForResponse(toAPI(page), toAPI(frame), toAPI(response.get()), toAPI(request.get()), &userDataToPass, m_client.clientInfo);
InjectedBundlePagePolicyClient.h 50 WKBundlePagePolicyAction decidePolicyForResponse(WebPage*, WebFrame*, const WebCore::ResourceResponse&, const WebCore::ResourceRequest&, RefPtr<APIObject>& userData);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.h 100 static WKBundlePagePolicyAction decidePolicyForResponse(WKBundlePageRef, WKBundleFrameRef, WKURLResponseRef, WKURLRequestRef, WKTypeRef*, const void*);
104 WKBundlePagePolicyAction decidePolicyForResponse(WKBundlePageRef, WKBundleFrameRef, WKURLResponseRef, WKURLRequestRef, WKTypeRef*);
InjectedBundlePage.cpp 210 decidePolicyForResponse,
706 WKBundlePagePolicyAction InjectedBundlePage::decidePolicyForResponse(WKBundlePageRef page, WKBundleFrameRef frame, WKURLResponseRef response, WKURLRequestRef request, WKTypeRef* userData, const void* clientInfo)
708 return static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->decidePolicyForResponse(page, frame, response, request, userData);
726 WKBundlePagePolicyAction InjectedBundlePage::decidePolicyForResponse(WKBundlePageRef, WKBundleFrameRef, WKURLResponseRef, WKURLRequestRef, WKTypeRef*)
    [all...]
  /external/webkit/Tools/MiniBrowser/mac/
BrowserWindowController.m 373 static void decidePolicyForResponse(WKPageRef page, WKFrameRef frame, WKURLResponseRef response, WKURLRequestRef request, WKFramePolicyListenerRef listener, WKTypeRef userData, const void* clientInfo)
610 decidePolicyForResponse,
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 140 WKBundlePageDecidePolicyForResponseCallback decidePolicyForResponse;
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 118 WKPageDecidePolicyForResponseCallback decidePolicyForResponse;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 590 WKBundlePagePolicyAction policy = webPage->injectedBundlePolicyClient().decidePolicyForResponse(webPage, m_frame, response, request, userData);
602 if (!webPage->sendSync(Messages::WebPageProxy::DecidePolicyForResponse(m_frame->frameID(), response, request, listenerID, InjectedBundleUserMessageEncoder(userData.get())), Messages::WebPageProxy::DecidePolicyForResponse::Reply(receivedPolicyAction, policyAction, downloadID)))
    [all...]

Completed in 43 milliseconds