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

  /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);
WebPageProxy.cpp     [all...]
  /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/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);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 140 WKBundlePageDecidePolicyForResponseCallback decidePolicyForResponse;
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
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/Source/WebKit2/UIProcess/API/C/
WKPage.h 118 WKPageDecidePolicyForResponseCallback decidePolicyForResponse;

Completed in 242 milliseconds