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

12

/macosx-10.10/WebCore-7600.1.25/Modules/encryptedmedia/
H A DMediaKeyMessageEvent.idl32 [InitializedByEventConstructor] readonly attribute DOMString destinationURL;
H A DMediaKeyMessageEvent.cpp48 , m_destinationURL(initializer.destinationURL)
H A DMediaKeyMessageEvent.h41 String destinationURL; member in struct:WebCore::MediaKeyMessageEventInit
61 String destinationURL() const { return m_destinationURL; } function in class:WebCore::MediaKeyMessageEvent
H A DMediaKeySession.cpp104 // 2. Let destinationURL be null.
105 String destinationURL; local
111 RefPtr<Uint8Array> keyRequest = m_session->generateKeyRequest(request.mimeType, request.initData.get(), destinationURL, errorCode, systemCode);
128 // destinationURL = destinationURL
129 sendMessage(keyRequest.get(), destinationURL);
175 // destinationURL = null
200 void MediaKeySession::sendMessage(Uint8Array* message, String destinationURL) argument
206 init.destinationURL = destinationURL;
[all...]
H A DMediaKeySession.h89 virtual void sendMessage(Uint8Array*, String destinationURL);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/Cocoa/
H A DHistoryClient.mm55 void HistoryClient::didPerformClientRedirect(WebContext*, WebPageProxy* webPageProxy, const WTF::String& sourceURL, const WTF::String& destinationURL, WebFrameProxy* webFrameProxy)
62 navigationState.didPerformClientRedirect(sourceURL, destinationURL);
65 void HistoryClient::didPerformServerRedirect(WebContext*, WebPageProxy* webPageProxy, const WTF::String& sourceURL, const WTF::String& destinationURL, WebFrameProxy* webFrameProxy)
72 navigationState.didPerformServerRedirect(sourceURL, destinationURL);
H A DHistoryClient.h45 virtual void didPerformClientRedirect(WebContext*, WebPageProxy*, const WTF::String& sourceURL, const WTF::String& destinationURL, WebFrameProxy*) override;
46 virtual void didPerformServerRedirect(WebContext*, WebPageProxy*, const WTF::String& sourceURL, const WTF::String& destinationURL, WebFrameProxy*) override;
/macosx-10.10/WebKit-7600.1.25/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;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBrowsingContextHistoryDelegate.h38 - (void)browsingContextController:(WKBrowsingContextController *)browsingContextController didPerformClientRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
39 - (void)browsingContextController:(WKBrowsingContextController *)browsingContextController didPerformServerRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
H A DWKHistoryDelegatePrivate.h40 - (void)_webView:(WKWebView *)webView didPerformClientRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
41 - (void)_webView:(WKWebView *)webView didPerformServerRedirectFromURL:(NSURL *)sourceURL toURL:(NSURL *)destinationURL;
H A DWKNavigationData.h41 @property (readonly) NSURL *destinationURL; variable
H A DWKNavigationData.mm58 - (NSURL *)destinationURL
/macosx-10.10/WebCore-7600.1.25/platform/graphics/
H A DCDMSession.h41 virtual void sendMessage(Uint8Array*, String destinationURL) = 0;
62 virtual PassRefPtr<Uint8Array> generateKeyRequest(const String& mimeType, Uint8Array* initData, String& destinationURL, unsigned short& errorCode, unsigned long& systemCode) = 0;
/macosx-10.10/WebKit-7600.1.25/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);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/efl/
H A DContextHistoryClientEfl.cpp59 void ContextHistoryClientEfl::didPerformClientRedirect(WKContextRef, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef, const void* clientInfo) argument
67 WKEinaSharedString destinationURLString(destinationURL);
72 void ContextHistoryClientEfl::didPerformServerRedirect(WKContextRef, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef, const void* clientInfo) argument
80 WKEinaSharedString destinationURLString(destinationURL);
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKContextHistoryClient.h32 typedef void (*WKContextDidPerformClientRedirectCallback)(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo);
33 typedef void (*WKContextDidPerformServerRedirectCallback)(WKContextRef context, WKPageRef page, WKURLRef sourceURL, WKURLRef destinationURL, WKFrameRef frame, const void *clientInfo);
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/cf/
H A DCDMSessionAVFoundationCF.h48 virtual PassRefPtr<Uint8Array> generateKeyRequest(const String& mimeType, Uint8Array* initData, String& destinationURL, unsigned short& errorCode, unsigned long& systemCode) override;
H A DCDMSessionAVFoundationCF.cpp54 PassRefPtr<Uint8Array> CDMSessionAVFoundationCF::generateKeyRequest(const String& mimeType, Uint8Array* initData, String& destinationURL, unsigned short& errorCode, unsigned long& systemCode) argument
101 destinationURL = String();
/macosx-10.10/WebCore-7600.1.25/platform/graphics/avfoundation/objc/
H A DCDMSessionAVFoundationObjC.h48 virtual PassRefPtr<Uint8Array> generateKeyRequest(const String& mimeType, Uint8Array* initData, String& destinationURL, unsigned short& errorCode, unsigned long& systemCode) override;
H A DCDMSessionAVFoundationObjC.mm56 PassRefPtr<Uint8Array> CDMSessionAVFoundationObjC::generateKeyRequest(const String& mimeType, Uint8Array* initData, String& destinationURL, unsigned short& errorCode, unsigned long& systemCode)
88 destinationURL = String();
H A DCDMSessionMediaSourceAVFObjC.h45 virtual PassRefPtr<Uint8Array> generateKeyRequest(const String& mimeType, Uint8Array* initData, String& destinationURL, unsigned short& errorCode, unsigned long& systemCode) override;
H A DCDMSessionMediaSourceAVFObjC.mm71 PassRefPtr<Uint8Array> CDMSessionMediaSourceAVFObjC::generateKeyRequest(const String& mimeType, Uint8Array* initData, String& destinationURL, unsigned short& errorCode, unsigned long& systemCode)
74 UNUSED_PARAM(destinationURL);
/macosx-10.10/WebCore-7600.1.25/loader/
H A DPingLoader.h58 static void sendPing(Frame&, const URL& pingURL, const URL& destinationURL);
H A DPingLoader.cpp71 void PingLoader::sendPing(Frame& frame, const URL& pingURL, const URL& destinationURL) argument
83 request.setHTTPHeaderField(HTTPHeaderName::PingTo, destinationURL);
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLAnchorElement.h123 void sendPings(const URL& destinationURL);

Completed in 229 milliseconds

12