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

  /external/webkit/Source/WebKit2/UIProcess/
WebDownloadClient.h 41 class DownloadProxy;
46 void didStart(WebContext*, DownloadProxy*);
47 void didReceiveAuthenticationChallenge(WebContext*, DownloadProxy*, AuthenticationChallengeProxy*);
48 void didReceiveResponse(WebContext*, DownloadProxy*, const WebCore::ResourceResponse&);
49 void didReceiveData(WebContext*, DownloadProxy*, uint64_t length);
50 bool shouldDecodeSourceDataOfMIMEType(WebContext*, DownloadProxy*, const String& mimeType);
51 String decideDestinationWithSuggestedFilename(WebContext*, DownloadProxy*, const String& filename, bool& allowOverwrite);
52 void didCreateDestination(WebContext*, DownloadProxy*, const String& path);
53 void didFinish(WebContext*, DownloadProxy*);
54 void didFail(WebContext*, DownloadProxy*, const WebCore::ResourceError&)
    [all...]
WebDownloadClient.cpp 37 void WebDownloadClient::didStart(WebContext* webContext, DownloadProxy* downloadProxy)
42 m_client.didStart(toAPI(webContext), toAPI(downloadProxy), m_client.clientInfo);
45 void WebDownloadClient::didReceiveAuthenticationChallenge(WebContext* webContext, DownloadProxy* downloadProxy, AuthenticationChallengeProxy* authenticationChallengeProxy)
50 m_client.didReceiveAuthenticationChallenge(toAPI(webContext), toAPI(downloadProxy), toAPI(authenticationChallengeProxy), m_client.clientInfo);
53 void WebDownloadClient::didReceiveResponse(WebContext* webContext, DownloadProxy* downloadProxy, const ResourceResponse& response)
58 m_client.didReceiveResponse(toAPI(webContext), toAPI(downloadProxy), toAPI(WebURLResponse::create(response).get()), m_client.clientInfo);
61 void WebDownloadClient::didReceiveData(WebContext* webContext, DownloadProxy* downloadProxy, uint64_t length
    [all...]
WebContext.h 47 class DownloadProxy;
93 DownloadProxy* download(WebPageProxy* initiatingPage, const WebCore::ResourceRequest&);
140 DownloadProxy* createDownloadProxy();
142 void downloadFinished(DownloadProxy*);
243 HashMap<uint64_t, RefPtr<DownloadProxy> > m_downloads;
WebContext.cpp 29 #include "DownloadProxy.h"
329 for (HashMap<uint64_t, RefPtr<DownloadProxy> >::iterator::Values it = m_downloads.begin().values(), end = m_downloads.end().values(); it != end; ++it) {
372 DownloadProxy* WebContext::download(WebPageProxy* initiatingPage, const ResourceRequest& request)
374 DownloadProxy* download = createDownloadProxy();
546 DownloadProxy* WebContext::createDownloadProxy()
548 RefPtr<DownloadProxy> downloadProxy = DownloadProxy::create(this);
549 m_downloads.set(downloadProxy->downloadID(), downloadProxy);
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/Downloads/
DownloadProxy.cpp 27 #include "DownloadProxy.h"
47 PassRefPtr<DownloadProxy> DownloadProxy::create(WebContext* webContext)
49 return adoptRef(new DownloadProxy(webContext));
52 DownloadProxy::DownloadProxy(WebContext* webContext)
58 DownloadProxy::~DownloadProxy()
63 void DownloadProxy::cancel()
72 void DownloadProxy::invalidate(
    [all...]
DownloadProxy.h 47 class DownloadProxy : public APIObject {
51 static PassRefPtr<DownloadProxy> create(WebContext*);
52 ~DownloadProxy();
67 explicit DownloadProxy(WebContext*);
  /external/webkit/Source/WebKit2/WebProcess/Downloads/
Download.cpp 73 send(Messages::DownloadProxy::DidStart(m_request));
83 send(Messages::DownloadProxy::DidReceiveResponse(response));
88 send(Messages::DownloadProxy::DidReceiveData(length));
94 if (!sendSync(Messages::DownloadProxy::ShouldDecodeSourceDataOfMIMEType(mimeType), Messages::DownloadProxy::ShouldDecodeSourceDataOfMIMEType::Reply(result)))
104 if (!sendSync(Messages::DownloadProxy::DecideDestinationWithSuggestedFilename(filename), Messages::DownloadProxy::DecideDestinationWithSuggestedFilename::Reply(destination, allowOverwrite, sandboxExtensionHandle)))
125 send(Messages::DownloadProxy::DidCreateDestination(path));
132 send(Messages::DownloadProxy::DidFinish());
141 send(Messages::DownloadProxy::DidFail(error, resumeData))
    [all...]
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKDownload.cpp 29 #include "DownloadProxy.h"
37 return toAPI(DownloadProxy::APIType);
WKAPICast.h 52 class DownloadProxy;
90 WK_ADD_API_MAPPING(WKDownloadRef, DownloadProxy)
  /external/webkit/Source/WebKit2/WebProcess/Authentication/
AuthenticationManager.cpp 81 download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge, challengeID));

Completed in 1241 milliseconds