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

/external/webkit/Source/WebKit2/UIProcess/
H A DWebDownloadClient.cpp69 bool WebDownloadClient::shouldDecodeSourceDataOfMIMEType(WebContext* webContext, DownloadProxy* downloadProxy, const String& mimeType) function in class:WebKit::WebDownloadClient
71 if (!m_client.shouldDecodeSourceDataOfMIMEType)
74 return m_client.shouldDecodeSourceDataOfMIMEType(toAPI(webContext), toAPI(downloadProxy), toAPI(mimeType.impl()), m_client.clientInfo);
H A DWebDownloadClient.h50 bool shouldDecodeSourceDataOfMIMEType(WebContext*, DownloadProxy*, const String& mimeType);
/external/webkit/Source/WebKit2/UIProcess/Downloads/
H A DDownloadProxy.cpp121 void DownloadProxy::shouldDecodeSourceDataOfMIMEType(const String& mimeType, bool& result) function in class:WebKit::DownloadProxy
126 result = m_webContext->downloadClient().shouldDecodeSourceDataOfMIMEType(m_webContext, this, mimeType);
H A DDownloadProxy.h76 void shouldDecodeSourceDataOfMIMEType(const String& mimeType, bool& result);
/external/webkit/Source/WebKit/mac/Misc/
H A DWebDownload.mm90 selector == @selector(download:shouldDecodeSourceDataOfMIMEType:) ||
155 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
157 return [realDelegate download:download shouldDecodeSourceDataOfMIMEType:encodingType];
/external/webkit/Source/WebKit/win/
H A DDefaultDownloadDelegate.h57 virtual HRESULT STDMETHODCALLTYPE shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode);
H A DDefaultDownloadDelegate.cpp181 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode) function in class:DefaultDownloadDelegate
183 LOG(Download, "DefaultDownloadDelegate %p - shouldDecodeSourceDataOfMIMEType %s", download, String(encodingType, SysStringLen(encodingType)).ascii().data());
H A DWebDownloadCFNet.cpp432 if (FAILED(m_delegate->shouldDecodeSourceDataOfMIMEType(this, BString(mimeType), &result))) {
433 LOG_ERROR("DownloadDelegate->shouldDecodeSourceDataOfMIMEType failed");
/external/webkit/Source/WebKit2/WebProcess/Downloads/
H A DDownload.cpp91 bool Download::shouldDecodeSourceDataOfMIMEType(const String& mimeType) function in class:WebKit::Download
H A DDownload.h82 bool shouldDecodeSourceDataOfMIMEType(const String& mimeType);
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebDownload.idl149 HRESULT shouldDecodeSourceDataOfMIMEType([in] IWebDownload* download, [in] BSTR encodingType, [out, retval] BOOL* shouldDecode);
/external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
H A DDownloadMac.mm268 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
271 return _download->shouldDecodeSourceDataOfMIMEType(encodingType);
/external/webkit/Source/WebKit2/UIProcess/API/C/
H A DWKContext.h92 WKContextDownloadShouldDecodeSourceDataOfMIMETypeCallback shouldDecodeSourceDataOfMIMEType; member in struct:WKContextDownloadClient
/external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
H A DDownloadCFNet.cpp181 return downloadFromClientInfo(clientInfo)->shouldDecodeSourceDataOfMIMEType(encodingType);

Completed in 586 milliseconds