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

  /external/webkit/Source/WebKit2/UIProcess/
WebHistoryClient.h 43 void didPerformClientRedirect(WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
44 void didPerformServerRedirect(WebContext*, WebPageProxy*, const String& sourceURL, const String& destinationURL, WebFrameProxy*);
WebHistoryClient.cpp 46 void WebHistoryClient::didPerformClientRedirect(WebContext* context, WebPageProxy* page, const String& sourceURL, const String& destinationURL, WebFrameProxy* frame)
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)
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/
WebHistoryDelegate.h 36 - (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/
HistoryDelegate.mm 56 - (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/Tools/DumpRenderTree/win/
HistoryDelegate.h 51 /* [in] */ BSTR destinationURL,
57 /* [in] */ BSTR destinationURL,
HistoryDelegate.cpp 152 HRESULT HistoryDelegate::didPerformClientRedirectFromURL(IWebView*, BSTR sourceURL, BSTR destinationURL, IWebFrame*)
162 if (destinationURL)
163 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
169 HRESULT HistoryDelegate::didPerformServerRedirectFromURL(IWebView* webView, BSTR sourceURL, BSTR destinationURL, IWebFrame* webFrame)
179 if (destinationURL)
180 destination = urlSuitableForTestResult(wstringFromBSTR(destinationURL));
  /external/webkit/Source/WebKit/win/Interfaces/
IWebHistoryDelegate.idl 45 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/Source/WebCore/loader/
PingLoader.h 57 static void sendPing(Frame*, const KURL& pingURL, const KURL& destinationURL);
PingLoader.cpp 69 void PingLoader::sendPing(Frame* frame, const KURL& pingURL, const KURL& destinationURL)
82 request.setHTTPHeaderField("Ping-To", destinationURL);
FrameLoader.h 407 bool shouldReload(const KURL& currentURL, const KURL& destinationURL);
FrameLoader.cpp     [all...]
  /external/webkit/Tools/MiniBrowser/mac/
AppDelegate.m 80 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/
HTMLAnchorElement.h 116 void sendPings(const KURL& destinationURL);
HTMLAnchorElement.cpp 488 void HTMLAnchorElement::sendPings(const KURL& destinationURL)
495 PingLoader::sendPing(document()->frame(), document()->completeURL(pingURLs[i]), destinationURL);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 56 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 184 milliseconds