Searched refs:destinationURL (Results 1 - 15 of 15) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/
H A DWebHistoryClient.h43 void didPerformClientRedirect(WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
44 void didPerformServerRedirect(WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
H A DWebHistoryClient.cpp46 void WebHistoryClient::didPerformClientRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) argument
51 m_client.didPerformClientRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
54 void WebHistoryClient::didPerformServerRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame) argument
59 m_client.didPerformServerRedirect(toAPI(context), toAPI(page), toURLRef(sourceURL.impl()), toURLRef(destinationURL.impl()), toAPI(frame), m_client.clientInfo);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebHistoryDelegate.h36 - (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame;
38 - (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame;
/external/webkit/Tools/DumpRenderTree/mac/
H A DHistoryDelegate.mm56 - (void)webView:(WebView *)webView didPerformClientRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame
59 NSURL *dest = [NSURL URLWithString:destinationURL];
63 - (void)webView:(WebView *)webView didPerformServerRedirectFromURL:(NSString *)sourceURL toURL:(NSString *)destinationURL inFrame:(WebFrame *)webFrame
66 NSURL *dest = [NSURL URLWithString:destinationURL];
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebHistoryDelegate.idl45 HRESULT didPerformClientRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFrame* webFrame);
46 HRESULT didPerformServerRedirectFromURL([in] IWebView* webView, [in] BSTR sourceURL, [in] BSTR destinationURL, [in] IWebFrame* webFrame);
/external/webkit/Tools/DumpRenderTree/win/
H A DHistoryDelegate.cpp152 HRESULT HistoryDelegate::didPerformClientRedirectFromURL(IWebView*, BSTR sourceURL, BSTR destinationURL, IWebFrame*) argument
162 if (destinationURL)
163 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
169 HRESULT HistoryDelegate::didPerformServerRedirectFromURL(IWebView* webView, BSTR sourceURL, BSTR destinationURL, IWebFrame* webFrame) argument
179 if (destinationURL)
180 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
H A DHistoryDelegate.h51 /* [in] */ BSTR destinationURL,
57 /* [in] */ BSTR destinationURL,
/external/webkit/Source/WebCore/loader/
H A DPingLoader.h57 static void sendPing(Frame*, const KURL& pingURL, const KURL& destinationURL);
H A DPingLoader.cpp69 void PingLoader::sendPing(Frame* frame, const KURL& pingURL, const KURL& destinationURL) argument
82 request.setHTTPHeaderField("Ping-To", destinationURL);
H A DFrameLoader.h407 bool shouldReload(const KURL& currentURL, const KURL& destinationURL);
H A DFrameLoader.cpp2145 bool FrameLoader::shouldReload(const KURL& currentURL, const KURL& destinationURL) argument
2156 if (!destinationURL.hasFragmentIdentifier())
2158 return !equalIgnoringFragmentIdentifier(currentURL, destinationURL);
/external/webkit/Tools/MiniBrowser/mac/
H A DAppDelegate.m80 static void didPerformClientRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
83 CFURLRef cfDestinationURL = WKURLCopyCFURL(0, destinationURL);
84 LOG(@"HistoryClient - didPerformClientRedirect - sourceURL: %@ - destinationURL: %@", cfSourceURL, cfDestinationURL);
89 static void didPerformServerRedirect(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo)
92 CFURLRef cfDestinationURL = WKURLCopyCFURL(0, destinationURL);
93 LOG(@"HistoryClient - didPerformServerRedirect - sourceURL: %@ - destinationURL: %@", cfSourceURL, cfDestinationURL);
/external/webkit/Source/WebCore/html/
H A DHTMLAnchorElement.h116 void sendPings(const KURL& destinationURL);
H A DHTMLAnchorElement.cpp488 void HTMLAnchorElement::sendPings(const KURL& destinationURL) argument
495 PingLoader::sendPing(document()->frame(), document()->completeURL(pingURLs[i]), destinationURL); local
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKContext.h56 typedef void (*WKContextDidPerformClientRedirectCallback)(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo);
57 typedef void (*WKContextDidPerformServerRedirectCallback)(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo);

Completed in 856 milliseconds