HomeSort by relevance Sort by last modified time
    Searched defs:shouldDecodeSourceDataOfMIMEType (Results 1 - 5 of 5) 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);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 91 bool Download::shouldDecodeSourceDataOfMIMEType(const String& mimeType)
94 if (!sendSync(Messages::DownloadProxy::ShouldDecodeSourceDataOfMIMEType(mimeType), Messages::DownloadProxy::ShouldDecodeSourceDataOfMIMEType::Reply(result)))
  /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);
  /external/webkit/Source/WebKit/win/
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());
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 92 WKContextDownloadShouldDecodeSourceDataOfMIMETypeCallback shouldDecodeSourceDataOfMIMEType;

Completed in 183 milliseconds