Searched refs:decideDestinationWithSuggestedFilename (Results 1 - 14 of 14) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/
H A DWebDownloadClient.cpp77 String WebDownloadClient::decideDestinationWithSuggestedFilename(WebContext* webContext, DownloadProxy* downloadProxy, const String& filename, bool& allowOverwrite) function in class:WebKit::WebDownloadClient
79 if (!m_client.decideDestinationWithSuggestedFilename)
82 WKRetainPtr<WKStringRef> destination(AdoptWK, m_client.decideDestinationWithSuggestedFilename(toAPI(webContext), toAPI(downloadProxy), toAPI(filename.impl()), &allowOverwrite, m_client.clientInfo));
H A DWebDownloadClient.h51 String decideDestinationWithSuggestedFilename(WebContext*, DownloadProxy*, const String& filename, bool& allowOverwrite);
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp129 void DownloadProxy::decideDestinationWithSuggestedFilename(const String& filename, String& destination, bool& allowOverwrite, SandboxExtension::Handle& sandboxExtensionHandle) function in class:WebKit::DownloadProxy
134 destination = m_webContext->downloadClient().decideDestinationWithSuggestedFilename(m_webContext, this, filename, allowOverwrite);
H A DDownloadProxy.h77 void decideDestinationWithSuggestedFilename(const String& filename, String& destination, bool& allowOverwrite, SandboxExtension::Handle& sandboxExtensionHandle);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebDownload.mm91 selector == @selector(download:decideDestinationWithSuggestedFilename:) ||
160 - (void)download:(NSURLDownload *)download decideDestinationWithSuggestedFilename:(NSString *)filename
162 [realDelegate download:download decideDestinationWithSuggestedFilename:filename];
/external/webkit/Source/WebKit/win/
H A DDefaultDownloadDelegate.h50 virtual HRESULT STDMETHODCALLTYPE decideDestinationWithSuggestedFilename(IWebDownload *download, BSTR filename);
H A DDefaultDownloadDelegate.cpp107 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::decideDestinationWithSuggestedFilename(IWebDownload *download, BSTR filename) function in class:DefaultDownloadDelegate
109 LOG(Download, "DefaultDownloadDelegate %p - decideDestinationWithSuggestedFilename %s", download, String(filename, SysStringLen(filename)).ascii().data());
H A DWebDownloadCFNet.cpp441 if (FAILED(m_delegate->decideDestinationWithSuggestedFilename(this, BString(name))))
481 if (FAILED(m_delegate->decideDestinationWithSuggestedFilename(this, destinationBSTR)))
482 LOG_ERROR("delegate->decideDestinationWithSuggestedFilename() failed");
484 // The call to m_delegate->decideDestinationWithSuggestedFilename() should have changed our destination, so we'll try the move
/external/webkit/Source/WebKit2/WebProcess/Downloads/
H A DDownload.cpp114 String Download::decideDestinationWithSuggestedFilename(const String& filename, bool& allowOverwrite) function in class:WebKit::Download
H A DDownload.h83 String decideDestinationWithSuggestedFilename(const String& filename, bool& allowOverwrite);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebDownload.idl135 HRESULT decideDestinationWithSuggestedFilename([in] IWebDownload* download, [in] BSTR filename);
/external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
H A DDownloadMac.mm276 - (void)download:(NSURLDownload *)download decideDestinationWithSuggestedFilename:(NSString *)filename
281 destination = _download->decideDestinationWithSuggestedFilename(filename, allowOverwrite);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKContext.h93 WKContextDownloadDecideDestinationWithSuggestedFilenameCallback decideDestinationWithSuggestedFilename; member in struct:WKContextDownloadClient
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
H A DDownloadCFNet.cpp188 download->decideDestinationWithSuggestedFilename(objectName, allowOverwrite);

Completed in 154 milliseconds