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

/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/c/
H A DWKBundlePageLoaderClient.h79 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV0
103 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV1
137 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV2
175 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV3
217 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV4
262 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV5
310 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV6
362 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV7
417 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClientV8
477 WKBundlePageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKBundlePageLoaderClient
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DPageLoadClientEfl.cpp114 void PageLoadClientEfl::didCommitLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef, const void* clientInfo) function in class:WebKit::PageLoadClientEfl
176 loadClient.didCommitLoadForFrame = didCommitLoadForFrame;
H A DPageLoadClientEfl.h50 static void didCommitLoadForFrame(WKPageRef, WKFrameRef, WKTypeRef userData, const void* clientInfo);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKPageLoaderClient.h96 WKPageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKPageLoaderClientV0
131 WKPageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKPageLoaderClientV1
176 WKPageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKPageLoaderClientV2
229 WKPageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKPageLoaderClientV3
285 WKPageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKPageLoaderClientV4
345 WKPageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKPageLoaderClientV5
411 WKPageDidCommitLoadForFrameCallback didCommitLoadForFrame; member in struct:WKPageLoaderClient
H A DWKPage.cpp806 virtual void didCommitLoadForFrame(WebPageProxy* page, WebFrameProxy* frame, uint64_t, API::Object* userData) override
808 if (!m_client.didCommitLoadForFrame)
811 m_client.didCommitLoadForFrame(toAPI(page), toAPI(frame), toAPI(userData), m_client.base.clientInfo);
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebFrameLoadDelegate.h85 @method webView:didCommitLoadForFrame:
97 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame;
H A DWebView.mm2500 cache->didCommitLoadForFrameFunc = getMethod(delegate, @selector(webView:didCommitLoadForFrame:));
/macosx-10.10/WebKit-7600.1.25/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);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitLoaderClient.cpp66 static void didCommitLoadForFrame(WKPageRef, WKFrameRef frame, WKTypeRef /* userData */, const void* clientInfo) function
150 didCommitLoadForFrame,
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/Cocoa/
H A DWKWebProcessPlugInLoadDelegate.h38 - (void)webProcessPlugInBrowserContextController:(WKWebProcessPlugInBrowserContextController*)controller didCommitLoadForFrame:(WKWebProcessPlugInFrame *)frame;
/macosx-10.10/WebKit-7600.1.25/ios/DefaultDelegates/
H A DWebDefaultFrameLoadDelegate.m55 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
H A DWebDefaultUIKitDelegate.m59 - (void)webView:(WebView *)sender didCommitLoadForFrame:(WebFrame *)frame
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/API/mac/
H A DWKWebProcessPlugInBrowserContextController.mm111 static void didCommitLoadForFrame(WKBundlePageRef page, WKBundleFrameRef frame, WKTypeRef* userData, const void *clientInfo)
116 if ([loadDelegate respondsToSelector:@selector(webProcessPlugInBrowserContextController:didCommitLoadForFrame:)])
117 [loadDelegate webProcessPlugInBrowserContextController:pluginContextController didCommitLoadForFrame:wrapper(*toImpl(frame))];
209 client.didCommitLoadForFrame = didCommitLoadForFrame;
/macosx-10.10/WebKit2-7600.1.25/WebProcess/InjectedBundle/
H A DInjectedBundlePageLoaderClient.cpp116 void InjectedBundlePageLoaderClient::didCommitLoadForFrame(WebPage* page, WebFrame* frame, RefPtr<API::Object>& userData) function in class:WebKit::InjectedBundlePageLoaderClient
118 if (!m_client.didCommitLoadForFrame)
122 m_client.didCommitLoadForFrame(toAPI(page), toAPI(frame), &userDataToPass, m_client.base.clientInfo);
H A DInjectedBundlePageLoaderClient.h72 void didCommitLoadForFrame(WebPage*, WebFrame*, RefPtr<API::Object>& userData);
/macosx-10.10/WebKit-7600.1.25/ios/WebView/
H A DWebUIKitDelegate.h45 - (void)webView:(WebView *)webView didCommitLoadForFrame:(WebFrame *)frame;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/
H A DAPILoaderClient.h61 virtual void didCommitLoadForFrame(WebKit::WebPageProxy*, WebKit::WebFrameProxy*, uint64_t, API::Object*) { } function in class:API::LoaderClient
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Cocoa/
H A DNavigationState.h107 virtual void didCommitLoadForFrame(WebPageProxy*, WebFrameProxy*, uint64_t navigationID, API::Object*) override;
H A DNavigationState.mm543 void NavigationState::LoaderClient::didCommitLoadForFrame(WebPageProxy*, WebFrameProxy* webFrameProxy, uint64_t navigationID, API::Object*)
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBrowsingContextController.mm458 static void didCommitLoadForFrame(WKPageRef page, WKFrameRef frame, WKTypeRef userData, const void* clientInfo)
582 loaderClient.didCommitLoadForFrame = didCommitLoadForFrame;
/macosx-10.10/WebKit-7600.1.25/mac/WebCoreSupport/
H A DWebFrameLoaderClient.mm712 [[webView _UIKitDelegateForwarder] webView:webView didCommitLoadForFrame:m_webFrame.get()];
717 CallFrameLoadDelegate(implementations->didCommitLoadForFrameFunc, webView, @selector(webView:didCommitLoadForFrame:), m_webFrame.get());
/macosx-10.10/WebKit-7600.1.25/win/WebCoreSupport/
H A DWebFrameLoaderClient.cpp457 frameLoadDelegate->didCommitLoadForFrame(webView, m_webFrame);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebPageProxy.h956 void didCommitLoadForFrame(uint64_t frameID, uint64_t navigationID, const String& mimeType, bool frameHasCustomContentProvider, uint32_t frameLoadType, const WebCore::CertificateInfo&, IPC::MessageDecoder&);
H A DWebPageProxy.cpp2585 void WebPageProxy::didCommitLoadForFrame(uint64_t frameID, uint64_t navigationID, const String& mimeType, bool frameHasCustomContentProvider, uint32_t opaqueFrameLoadType, const WebCore::CertificateInfo& certificateInfo, IPC::MessageDecoder& decoder) function in class:WebKit::WebPageProxy
2601 // FIXME (bug 59111): didCommitLoadForFrame comes too late when restoring a page from b/f cache, making us disable secure event mode in password fields.
2636 m_loaderClient->didCommitLoadForFrame(this, frame, navigationID, userData.get());
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebFrameLoaderClient.cpp452 webPage->injectedBundleLoaderClient().didCommitLoadForFrame(webPage, m_frame, userData);

Completed in 328 milliseconds