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

  /external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.cpp 94 void WebDownloadClient::didFinish(WebContext* webContext, DownloadProxy* downloadProxy)
96 if (!m_client.didFinish)
99 m_client.didFinish(toAPI(webContext), toAPI(downloadProxy), m_client.clientInfo);
  /external/webkit/Tools/TestWebKitAPI/
JavaScriptTest.cpp 37 JavaScriptCallbackContext(const char* expectedString) : didFinish(false), expectedString(expectedString), didMatchExpectedString(false) { }
39 bool didFinish;
59 context->didFinish = true;
77 Util::run(&context.didFinish);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 128 void Download::didFinish()
132 send(Messages::DownloadProxy::DidFinish());
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 148 void DownloadProxy::didFinish()
153 m_webContext->downloadClient().didFinish(m_webContext, this);
  /external/webkit/Source/WebKit/win/
DefaultDownloadDelegate.cpp 217 HRESULT STDMETHODCALLTYPE DefaultDownloadDelegate::didFinish(IWebDownload* download)
219 LOG(Download, "DefaultDownloadDelegate %p - didFinish", download);
WebDownloadCFNet.cpp 464 void WebDownload::didFinish()
500 // It's extremely likely the call to delegate->didFinish() will deref this, so lets not let that cause our destruction just yet
502 if (FAILED(m_delegate->didFinish(this)))
503 LOG_ERROR("DownloadDelegate->didFinish failed");
544 { ((WebDownload*)clientInfo)->didFinish(); }
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.h 95 WKContextDownloadDidFinishCallback didFinish;

Completed in 110 milliseconds