Searched refs:didCommitLoadForFrame (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
H A DPageLoadBasic.cpp41 , didCommitLoadForFrame(false)
47 bool didCommitLoadForFrame; member in struct:TestWebKitAPI::State
54 TEST_ASSERT(!state->didCommitLoadForFrame);
65 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) function in namespace:TestWebKitAPI
74 state->didCommitLoadForFrame = true;
82 TEST_ASSERT(state->didCommitLoadForFrame);
94 TEST_ASSERT(!state->didCommitLoadForFrame);
124 loaderClient.didCommitLoadForFrame = didCommitLoadForFrame;
H A DFrameMIMETypeHTML.cpp43 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) function in namespace:TestWebKitAPI
68 loaderClient.didCommitLoadForFrame = didCommitLoadForFrame;
H A DFrameMIMETypePNG.cpp43 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo) function in namespace:TestWebKitAPI
68 loaderClient.didCommitLoadForFrame = didCommitLoadForFrame;
/external/webkit/Source/WebKit/mac/WebView/
H A DWebFrameLoadDelegate.h76 @method webView:didCommitLoadForFrame:
88 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame;
H A DWebView.mm1620 cache->didCommitLoadForFrameFunc = getMethod(delegate, @selector(webView:didCommitLoadForFrame:));
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebFrameLoadDelegate.idl90 @method webView:didCommitLoadForFrame:
101 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame;
103 HRESULT didCommitLoadForFrame([in] IWebView* webView, [in] IWebFrame* frame);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebLoaderClient.h55 void didCommitLoadForFrame(WebPageProxy*, WebFrameProxy*, APIObject*);
H A DWebLoaderClient.cpp62 void WebLoaderClient::didCommitLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, APIObject* userData) function in class:WebKit::WebLoaderClient
64 if (!m_client.didCommitLoadForFrame)
67 m_client.didCommitLoadForFrame(toAPI(page), toAPI(frame), toAPI(userData), m_client.clientInfo);
H A DWebPageProxy.h516 void didCommitLoadForFrame(uint64_t frameID, const String& mimeType, bool frameHasCustomRepresentation, const PlatformCertificateInfo&, CoreIPC::ArgumentDecoder*);
H A DWebPageProxy.cpp1533 void WebPageProxy::didCommitLoadForFrame(uint64_t frameID, const String& mimeType, bool frameHasCustomRepresentation, const PlatformCertificateInfo& certificateInfo, CoreIPC::ArgumentDecoder* arguments) function in class:WebKit::WebPageProxy
1557 m_loaderClient.didCommitLoadForFrame(this, frame, userData.get());
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
H A DInjectedBundlePageLoaderClient.h53 void didCommitLoadForFrame(WebPage*, WebFrame*, RefPtr<APIObject>& userData);
H A DInjectedBundlePageLoaderClient.cpp69 void InjectedBundlePageLoaderClient::didCommitLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<APIObject>& userData) function in class:WebKit::InjectedBundlePageLoaderClient
71 if (!m_client.didCommitLoadForFrame)
75 m_client.didCommitLoadForFrame(toAPI(page), toAPI(frame), &userDataToPass, m_client.clientInfo);
/external/webkit/Tools/WinLauncher/
H A DWinLauncher.h55 virtual HRESULT STDMETHODCALLTYPE didCommitLoadForFrame( function in class:WinLauncherWebHost
/external/webkit/Tools/WebKitTestRunner/InjectedBundle/
H A DInjectedBundlePage.h54 static void didCommitLoadForFrame(WKBundlePageRef, WKBundleFrameRef, WKTypeRef*, const void*);
76 void didCommitLoadForFrame(WKBundleFrameRef);
H A DInjectedBundlePage.cpp175 didCommitLoadForFrame,
301 void InjectedBundlePage::didCommitLoadForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef*, const void *clientInfo) function in class:WTR::InjectedBundlePage
303 static_cast<InjectedBundlePage*>(const_cast<void*>(clientInfo))->didCommitLoadForFrame(frame);
420 void InjectedBundlePage::didCommitLoadForFrame(WKBundleFrameRef frame) function in class:WTR::InjectedBundlePage
/external/webkit/Tools/MiniBrowser/mac/
H A DBrowserWindowController.m37 - (void)didCommitLoadForFrame:(WKFrameRef)frame;
267 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void *clientInfo)
269 [(BrowserWindowController *)clientInfo didCommitLoadForFrame:frame];
581 didCommitLoadForFrame,
731 - (void)didCommitLoadForFrame:(WKFrameRef)frame
/external/webkit/Tools/DumpRenderTree/win/
H A DFrameLoadDelegate.h68 virtual HRESULT STDMETHODCALLTYPE didCommitLoadForFrame(
H A DFrameLoadDelegate.cpp154 HRESULT STDMETHODCALLTYPE FrameLoadDelegate::didCommitLoadForFrame( function in class:FrameLoadDelegate
159 printf("%s - didCommitLoadForFrame\n", descriptionSuitableForTestResult(frame).c_str());
/external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
H A DWKBundlePage.h103 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClient
/external/webkit/Tools/DumpRenderTree/mac/
H A DFrameLoadDelegate.mm175 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
178 NSString *string = [NSString stringWithFormat:@"%@ - didCommitLoadForFrame", [frame _drt_descriptionSuitableForTestResult]];
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKPage.h78 WKPageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKPageLoaderClient
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp395 frameLoadDelegate->didCommitLoadForFrame(webView, m_webFrame);
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.cpp436 webPage->injectedBundleLoaderClient().didCommitLoadForFrame(webPage, m_frame, userData);
/external/webkit/Source/WebKit/mac/WebCoreSupport/
H A DWebFrameLoaderClient.mm651 CallFrameLoadDelegate(implementations->didCommitLoadForFrameFunc, webView, @selector(webView:didCommitLoadForFrame:), m_webFrame.get());

Completed in 316 milliseconds