Searched defs:suggestedFilename (Results 1 - 9 of 9) sorted by relevance

/external/webkit/Source/WebKit/win/
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.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);
H A DWebPageProxy.cpp2932 void WebPageProxy::didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference& dataReference) argument
2934 m_pageClient->didFinishLoadingDataForCustomRepresentation(suggestedFilename, dataReference);
3017 void WebPageProxy::saveDataToFileInDownloadsFolder(const String& suggestedFilename, const String& mimeType, const String& originatingURLString, WebData* data) argument
3019 m_uiClient.saveDataToFileInDownloadsFolder(this, suggestedFilename, mimeType, originatingURLString, data);
/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())
/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/WebKit/gtk/webkit/
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/WebKit2/UIProcess/API/qt/
H A Dqwkpage.cpp266 void QWKPagePrivate::didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&) argument
/external/webkit/Source/WebKit2/UIProcess/gtk/
H A DWebView.cpp528 void WebView::didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&) argument
/external/webkit/Source/WebKit2/UIProcess/win/
H A DWebView.cpp1448 void WebView::didFinishLoadingDataForCustomRepresentation(const String& suggestedFilename, const CoreIPC::DataReference&) argument

Completed in 179 milliseconds