OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:didCreateDestination
(Results
1 - 16
of
16
) sorted by null
/external/webkit/Source/WebKit2/WebProcess/Downloads/cf/win/
DownloadCFWin.cpp
51
didCreateDestination
(m_destination);
53
didCreateDestination
(m_bundlePath);
/external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.cpp
86
void WebDownloadClient::
didCreateDestination
(WebContext* webContext, DownloadProxy* downloadProxy, const String& path)
88
if (!m_client.
didCreateDestination
)
91
m_client.
didCreateDestination
(toAPI(webContext), toAPI(downloadProxy), toAPI(path.impl()), m_client.clientInfo);
WebDownloadClient.h
52
void
didCreateDestination
(WebContext*, DownloadProxy*, const String& path);
/external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp
140
void DownloadProxy::
didCreateDestination
(const String& path)
145
m_webContext->downloadClient().
didCreateDestination
(m_webContext, this, path);
DownloadProxy.h
78
void
didCreateDestination
(const String& path);
/external/webkit/Source/WebKit/win/
DefaultDownloadDelegate.h
52
virtual HRESULT STDMETHODCALLTYPE
didCreateDestination
(IWebDownload* download, BSTR destination);
WebDownload.h
119
void
didCreateDestination
(CFURLRef);
WebDownloadCFNet.cpp
445
void WebDownload::
didCreateDestination
(CFURLRef destination)
460
if (FAILED(m_delegate->
didCreateDestination
(this, path)))
461
LOG_ERROR("DownloadDelegate->
didCreateDestination
failed");
493
m_delegate->
didCreateDestination
(this, bundleBSTR);
496
m_delegate->
didCreateDestination
(this, finalDestinationBSTR);
541
{ ((WebDownload*)clientInfo)->
didCreateDestination
(path); }
DefaultDownloadDelegate.cpp
149
HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::
didCreateDestination
(IWebDownload* download, BSTR destination)
151
LOG(Download, "DefaultDownloadDelegate %p -
didCreateDestination
%s", download, String(destination, SysStringLen(destination)).ascii().data());
/external/webkit/Source/WebKit/mac/Misc/
WebDownload.mm
92
selector == @selector(download:
didCreateDestination
:) ||
165
- (void)download:(NSURLDownload *)download
didCreateDestination
:(NSString *)path
167
[realDelegate download:download
didCreateDestination
:path];
/external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.h
84
void
didCreateDestination
(const String& path);
Download.cpp
123
void Download::
didCreateDestination
(const String& path)
125
send(Messages::DownloadProxy::
DidCreateDestination
(path));
/external/webkit/Source/WebKit/win/Interfaces/
IWebDownload.idl
139
HRESULT
didCreateDestination
([in] IWebDownload* download, [in] BSTR destination);
/external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm
287
- (void)download:(NSURLDownload *)download
didCreateDestination
:(NSString *)path
290
_download->
didCreateDestination
(path);
/external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h
94
WKContextDownloadDidCreateDestinationCallback
didCreateDestination
;
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DownloadCFNet.cpp
197
download->
didCreateDestination
(download->destination());
Completed in 520 milliseconds