HomeSort by relevance Sort by last modified time
    Searched defs:didCreateDestination (Results 1 - 6 of 6) sorted by null

  /external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.cpp 86 void WebDownloadClient::didCreateDestination(WebContext* webContext, DownloadProxy* downloadProxy, const String& path)
88 if (!m_client.didCreateDestination)
91 m_client.didCreateDestination(toAPI(webContext), toAPI(downloadProxy), toAPI(path.impl()), m_client.clientInfo);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 123 void Download::didCreateDestination(const String& path)
125 send(Messages::DownloadProxy::DidCreateDestination(path));
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 140 void DownloadProxy::didCreateDestination(const String& path)
145 m_webContext->downloadClient().didCreateDestination(m_webContext, this, path);
  /external/webkit/Source/WebKit/win/
DefaultDownloadDelegate.cpp 149 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::didCreateDestination(IWebDownload* download, BSTR destination)
151 LOG(Download, "DefaultDownloadDelegate %p - didCreateDestination %s", download, String(destination, SysStringLen(destination)).ascii().data());
WebDownloadCFNet.cpp 445 void WebDownload::didCreateDestination(CFURLRef destination)
460 if (FAILED(m_delegate->didCreateDestination(this, path)))
461 LOG_ERROR("DownloadDelegate->didCreateDestination failed");
493 m_delegate->didCreateDestination(this, bundleBSTR);
496 m_delegate->didCreateDestination(this, finalDestinationBSTR);
541 { ((WebDownload*)clientInfo)->didCreateDestination(path); }
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 94 WKContextDownloadDidCreateDestinationCallback didCreateDestination;

Completed in 136 milliseconds