HomeSort by relevance Sort by last modified time
    Searched refs:shouldDecodeSourceDataOfMIMEType (Results 1 - 14 of 14) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.cpp 69 bool WebDownloadClient::shouldDecodeSourceDataOfMIMEType(WebContext* webContext, DownloadProxy* downloadProxy, const String& mimeType)
71 if (!m_client.shouldDecodeSourceDataOfMIMEType)
74 return m_client.shouldDecodeSourceDataOfMIMEType(toAPI(webContext), toAPI(downloadProxy), toAPI(mimeType.impl()), m_client.clientInfo);
WebDownloadClient.h 50 bool shouldDecodeSourceDataOfMIMEType(WebContext*, DownloadProxy*, const String& mimeType);
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 121 void DownloadProxy::shouldDecodeSourceDataOfMIMEType(const String& mimeType, bool& result)
126 result = m_webContext->downloadClient().shouldDecodeSourceDataOfMIMEType(m_webContext, this, mimeType);
DownloadProxy.h 76 void shouldDecodeSourceDataOfMIMEType(const String& mimeType, bool& result);
  /external/webkit/Source/WebKit/win/
DefaultDownloadDelegate.h 57 virtual HRESULT STDMETHODCALLTYPE shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode);
DefaultDownloadDelegate.cpp 181 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::shouldDecodeSourceDataOfMIMEType(IWebDownload* download, BSTR encodingType, BOOL* shouldDecode)
183 LOG(Download, "DefaultDownloadDelegate %p - shouldDecodeSourceDataOfMIMEType %s", download, String(encodingType, SysStringLen(encodingType)).ascii().data());
WebDownloadCFNet.cpp 432 if (FAILED(m_delegate->shouldDecodeSourceDataOfMIMEType(this, BString(mimeType), &result))) {
433 LOG_ERROR("DownloadDelegate->shouldDecodeSourceDataOfMIMEType failed");
  /external/webkit/Source/WebKit/mac/Misc/
WebDownload.mm 90 selector == @selector(download:shouldDecodeSourceDataOfMIMEType:) ||
155 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
157 return [realDelegate download:download shouldDecodeSourceDataOfMIMEType:encodingType];
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.h 82 bool shouldDecodeSourceDataOfMIMEType(const String& mimeType);
Download.cpp 91 bool Download::shouldDecodeSourceDataOfMIMEType(const String& mimeType)
94 if (!sendSync(Messages::DownloadProxy::ShouldDecodeSourceDataOfMIMEType(mimeType), Messages::DownloadProxy::ShouldDecodeSourceDataOfMIMEType::Reply(result)))
  /external/webkit/Source/WebKit/win/Interfaces/
IWebDownload.idl 149 HRESULT shouldDecodeSourceDataOfMIMEType([in] IWebDownload* download, [in] BSTR encodingType, [out, retval] BOOL* shouldDecode);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/mac/
DownloadMac.mm 268 - (BOOL)download:(NSURLDownload *)download shouldDecodeSourceDataOfMIMEType:(NSString *)encodingType
271 return _download->shouldDecodeSourceDataOfMIMEType(encodingType);
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 92 WKContextDownloadShouldDecodeSourceDataOfMIMETypeCallback shouldDecodeSourceDataOfMIMEType;
  /external/webkit/Source/WebKit2/WebProcess/Downloads/cfnet/
DownloadCFNet.cpp 181 return downloadFromClientInfo(clientInfo)->shouldDecodeSourceDataOfMIMEType(encodingType);

Completed in 223 milliseconds