Searched refs:suggestedFilename (Results 1 - 25 of 42) sorted by relevance

12

/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitdownloadprivate.h32 void webkit_download_set_suggested_filename(WebKitDownload*, const gchar* suggestedFilename);
H A Dwebkitdownload.cpp78 gchar* suggestedFilename; member in struct:_WebKitDownloadPrivate
164 g_free(priv->suggestedFilename);
600 if (!response.isNull() && !response.suggestedFilename().isEmpty())
601 webkit_download_set_suggested_filename(download, response.suggestedFilename().utf8().data());
620 if (priv->suggestedFilename)
621 return priv->suggestedFilename;
626 priv->suggestedFilename = g_strdup(decodeURLEscapeSequences(url.lastPathComponent()).utf8().data());
627 return priv->suggestedFilename;
631 void webkit_download_set_suggested_filename(WebKitDownload* download, const gchar* suggestedFilename) argument
634 g_free(priv->suggestedFilename);
[all...]
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebURLResponse.idl58 - (NSString *)suggestedFilename
60 HRESULT suggestedFilename([out, retval] BSTR* result);
/external/webkit/Source/WebKit2/UIProcess/API/mac/
H A DPDFViewController.h58 void setPDFDocumentData(const String& mimeType, const String& suggestedFilename, const CoreIPC::DataReference&);
H A DWKViewInternal.h70 - (void)_didFinishLoadingDataForCustomRepresentationWithSuggestedFilename:(const String&)suggestedFilename dataReference:(const CoreIPC::DataReference&)dataReference;
H A DPageClientImpl.h101 virtual void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&);
H A DPageClientImpl.mm348 void PageClientImpl::didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference& dataReference)
350 [m_wkView _didFinishLoadingDataForCustomRepresentationWithSuggestedFilename:suggestedFilename dataReference:dataReference];
/external/webkit/Source/WebCore/platform/network/cf/
H A DResourceResponseCFNet.cpp101 RetainPtr<CFStringRef> suggestedFilename(AdoptCF, CFURLResponseCopySuggestedFilename(m_cfResponse.get()));
102 m_suggestedFilename = suggestedFilename.get();
/external/webkit/Source/WebKit/win/
H A DWebURLResponse.h60 virtual HRESULT STDMETHODCALLTYPE suggestedFilename(
H A DWebURLResponse.cpp312 HRESULT STDMETHODCALLTYPE WebURLResponse::suggestedFilename( function in class:WebURLResponse
325 *result = BString(m_response.suggestedFilename()).release();
/external/webkit/Source/WebKit2/UIProcess/
H A DWebUIClient.h109 void saveDataToFileInDownloadsFolder(WebPageProxy*, const String& suggestedFilename, const String& mimeType, const String& originatingURLString, WebData*);
H A DPageClient.h150 virtual void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&) = 0;
H A DWebUIClient.cpp367 void WebUIClient::saveDataToFileInDownloadsFolder(WebPageProxy* page, const String& suggestedFilename, const String& mimeType, const String& originatingURLString, WebData* data) argument
372 m_client.saveDataToFileInDownloadsFolder(toAPI(page), toAPI(suggestedFilename.impl()), toAPI(mimeType.impl()), toURLRef(originatingURLString.impl()), toAPI(data), m_client.clientInfo);
/external/webkit/Source/WebCore/platform/network/mac/
H A DResourceResponseMac.mm94 m_suggestedFilename = [m_nsResponse.get() suggestedFilename];
H A DWebCoreURLResponse.mm527 RetainPtr<NSString> suggestedFilename(AdoptNS, (NSString *)wkCopyCFURLResponseSuggestedFilename(cfResponse));
528 if (!CFSetContainsValue(binaryExtensions, (CFStringRef) [[suggestedFilename.get() pathExtension] lowercaseString]))
/external/webkit/Source/WebCore/platform/network/
H A DResourceResponseBase.cpp126 data->m_suggestedFilename = suggestedFilename().crossThreadString();
206 const String& ResourceResponseBase::suggestedFilename() const function in class:WebCore::ResourceResponseBase
578 if (a.suggestedFilename() != b.suggestedFilename())
H A DResourceResponseBase.h72 const String& suggestedFilename() const;
/external/webkit/Source/WebKit2/UIProcess/API/qt/
H A Dqwkpage_p.h91 virtual void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&);
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebView.h120 virtual void didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&);
/external/webkit/Source/WebKit/mac/WebView/
H A DWebResource.mm389 NSString *suggestedFilename = _private->coreResource->response().suggestedFilename();
390 return suggestedFilename;
/external/webkit/Source/WebCore/platform/network/qt/
H A DQNetworkReplyHandler.cpp483 String suggestedFilename = filenameFromHTTPContentDisposition(QString::fromLatin1(m_replyWrapper->reply()->rawHeader("Content-Disposition"))); local
485 if (!suggestedFilename.isEmpty())
486 response.setSuggestedFilename(suggestedFilename);
/external/webkit/Source/WebCore/platform/win/
H A DDragImageWin.cpp75 String filename = image->response().suggestedFilename();
/external/webkit/Source/WebKit/chromium/src/
H A DWebURLResponse.cpp184 return m_private->m_resourceResponse->suggestedFilename();
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/mac/
H A DWebDragClientMac.mm277 NSString* filename = [response suggestedFilename];
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DWebFrame.cpp651 return loader->response().suggestedFilename();
658 return resource->response().suggestedFilename();

Completed in 2764 milliseconds

12