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

  /external/webkit/Source/WebKit2/UIProcess/
WebLoaderClient.h 58 void didFailLoadWithErrorForFrame(WebPageProxy*, WebFrameProxy*, const WebCore::ResourceError&, APIObject*);
WebLoaderClient.cpp 86 void WebLoaderClient::didFailLoadWithErrorForFrame(WebPageProxy* page, WebFrameProxy* frame, const ResourceError& error, APIObject* userData)
88 if (!m_client.didFailLoadWithErrorForFrame)
91 m_client.didFailLoadWithErrorForFrame(toAPI(page), toAPI(frame), toAPI(error), toAPI(userData), m_client.clientInfo);
WebPageProxy.cpp     [all...]
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundlePageLoaderClient.h 56 void didFailLoadWithErrorForFrame(WebPage*, WebFrame*, const WebCore::ResourceError&, RefPtr<APIObject>& userData);
InjectedBundlePageLoaderClient.cpp 99 void InjectedBundlePageLoaderClient::didFailLoadWithErrorForFrame(WebPage* page, WebFrame* frame, const ResourceError& error, RefPtr<APIObject>& userData)
101 if (!m_client.didFailLoadWithErrorForFrame)
105 m_client.didFailLoadWithErrorForFrame(toAPI(page), toAPI(frame), toAPI(error), &userDataToPass, m_client.clientInfo);
  /external/webkit/Tools/WebKitTestRunner/InjectedBundle/
InjectedBundlePage.h 57 static void didFailLoadWithErrorForFrame(WKBundlePageRef, WKBundleFrameRef, WKErrorRef, WKTypeRef*, const void*);
78 void didFailLoadWithErrorForFrame(WKBundleFrameRef, WKErrorRef);
InjectedBundlePage.cpp 178 didFailLoadWithErrorForFrame,
316 void InjectedBundlePage::didFailLoadWithErrorForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKErrorRef error, WKTypeRef*, const void *clientInfo)
318 static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didFailLoadWithErrorForFrame(frame, error);
571 void InjectedBundlePage::didFailLoadWithErrorForFrame(WKBundleFrameRef frame, WKErrorRef)
    [all...]
  /external/webkit/Tools/MiniBrowser/mac/
BrowserWindowController.m 40 - (void)didFailLoadWithErrorForFrame:(WKFrameRef)frame;
282 static void didFailLoadWithErrorForFrame(WKPageRef page, WKFrameRef frame, WKErrorRef error, WKTypeRef userData, const void *clientInfo)
284 [(BrowserWindowController *)clientInfo didFailLoadWithErrorForFrame:frame];
584 didFailLoadWithErrorForFrame,
719 - (void)didFailLoadWithErrorForFrame:(WKFrameRef)frame
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundlePage.h 106 WKBundlePageDidFailLoadWithErrorForFrameCallback didFailLoadWithErrorForFrame;
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKPage.h 81 WKPageDidFailLoadWithErrorForFrameCallback didFailLoadWithErrorForFrame;
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 481 webPage->injectedBundleLoaderClient().didFailLoadWithErrorForFrame(webPage, m_frame, error, userData);
    [all...]

Completed in 120 milliseconds