Home
last modified time | relevance | path

Searched refs:DownloadProxy (Results 1 – 18 of 18) sorted by relevance

/external/webkit/Source/WebKit2/UIProcess/Downloads/
DDownloadProxy.cpp47 PassRefPtr<DownloadProxy> DownloadProxy::create(WebContext* webContext) in create()
49 return adoptRef(new DownloadProxy(webContext)); in create()
52 DownloadProxy::DownloadProxy(WebContext* webContext) in DownloadProxy() function in WebKit::DownloadProxy
58 DownloadProxy::~DownloadProxy() in ~DownloadProxy()
63 void DownloadProxy::cancel() in cancel()
72 void DownloadProxy::invalidate() in invalidate()
78 void DownloadProxy::processDidClose() in processDidClose()
86 void DownloadProxy::didStart(const ResourceRequest& request) in didStart()
96 void DownloadProxy::didReceiveAuthenticationChallenge(const AuthenticationChallenge& authentication… in didReceiveAuthenticationChallenge()
105 void DownloadProxy::didReceiveResponse(const ResourceResponse& response) in didReceiveResponse()
[all …]
DDownloadProxy.h47 class DownloadProxy : public APIObject {
51 static PassRefPtr<DownloadProxy> create(WebContext*);
52 ~DownloadProxy();
67 explicit DownloadProxy(WebContext*);
DDownloadProxy.messages.in23 messages -> DownloadProxy {
/external/webkit/Source/WebKit2/UIProcess/
DWebDownloadClient.h41 class DownloadProxy; variable
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,…
52 void didCreateDestination(WebContext*, DownloadProxy*, const String& path);
53 void didFinish(WebContext*, DownloadProxy*);
54 void didFail(WebContext*, DownloadProxy*, const WebCore::ResourceError&);
[all …]
DWebDownloadClient.cpp37 void WebDownloadClient::didStart(WebContext* webContext, DownloadProxy* downloadProxy) in didStart()
45 void WebDownloadClient::didReceiveAuthenticationChallenge(WebContext* webContext, DownloadProxy* do… in didReceiveAuthenticationChallenge()
53 void WebDownloadClient::didReceiveResponse(WebContext* webContext, DownloadProxy* downloadProxy, co… in didReceiveResponse()
61 void WebDownloadClient::didReceiveData(WebContext* webContext, DownloadProxy* downloadProxy, uint64… in didReceiveData()
69 bool WebDownloadClient::shouldDecodeSourceDataOfMIMEType(WebContext* webContext, DownloadProxy* dow… in shouldDecodeSourceDataOfMIMEType()
77 …lient::decideDestinationWithSuggestedFilename(WebContext* webContext, DownloadProxy* downloadProxy… in decideDestinationWithSuggestedFilename()
86 void WebDownloadClient::didCreateDestination(WebContext* webContext, DownloadProxy* downloadProxy, … in didCreateDestination()
94 void WebDownloadClient::didFinish(WebContext* webContext, DownloadProxy* downloadProxy) in didFinish()
102 void WebDownloadClient::didFail(WebContext* webContext, DownloadProxy* downloadProxy, const Resourc… in didFail()
110 void WebDownloadClient::didCancel(WebContext* webContext, DownloadProxy* downloadProxy) in didCancel()
[all …]
DWebContext.h47 class DownloadProxy; variable
93 DownloadProxy* download(WebPageProxy* initiatingPage, const WebCore::ResourceRequest&);
140 DownloadProxy* createDownloadProxy();
142 void downloadFinished(DownloadProxy*);
243 HashMap<uint64_t, RefPtr<DownloadProxy> > m_downloads;
DWebContext.cpp329 …for (HashMap<uint64_t, RefPtr<DownloadProxy> >::iterator::Values it = m_downloads.begin().values()… in disconnectProcess()
372 DownloadProxy* WebContext::download(WebPageProxy* initiatingPage, const ResourceRequest& request) in download()
374 DownloadProxy* download = createDownloadProxy(); in download()
546 DownloadProxy* WebContext::createDownloadProxy() in createDownloadProxy()
548 RefPtr<DownloadProxy> downloadProxy = DownloadProxy::create(this); in createDownloadProxy()
553 void WebContext::downloadFinished(DownloadProxy* downloadProxy) in downloadFinished()
581 if (DownloadProxy* downloadProxy = m_downloads.get(arguments->destinationID()).get()) in didReceiveMessage()
651 if (DownloadProxy* downloadProxy = m_downloads.get(arguments->destinationID()).get()) in didReceiveSyncMessage()
/external/webkit/Source/WebKit2/WebProcess/Downloads/
DDownload.cpp73 send(Messages::DownloadProxy::DidStart(m_request)); in didStart()
83 send(Messages::DownloadProxy::DidReceiveResponse(response)); in didReceiveResponse()
88 send(Messages::DownloadProxy::DidReceiveData(length)); in didReceiveData()
94 …if (!sendSync(Messages::DownloadProxy::ShouldDecodeSourceDataOfMIMEType(mimeType), Messages::Downl… in shouldDecodeSourceDataOfMIMEType()
104 …if (!sendSync(Messages::DownloadProxy::DecideDestinationWithSuggestedFilename(filename), Messages:… in retrieveDestinationWithSuggestedFilename()
125 send(Messages::DownloadProxy::DidCreateDestination(path)); in didCreateDestination()
132 send(Messages::DownloadProxy::DidFinish()); in didFinish()
141 send(Messages::DownloadProxy::DidFail(error, resumeData)); in didFail()
150 send(Messages::DownloadProxy::DidCancel(resumeData)); in didCancel()
/external/webkit/Source/WebKit2/UIProcess/API/C/
DWKDownload.cpp37 return toAPI(DownloadProxy::APIType); in WKDownloadGetTypeID()
DWKAPICast.h52 class DownloadProxy; variable
90 WK_ADD_API_MAPPING(WKDownloadRef, DownloadProxy) in WK_ADD_API_MAPPING()
/external/webkit/Source/WebKit2/WebProcess/Authentication/
DAuthenticationManager.cpp81 …download->send(Messages::DownloadProxy::DidReceiveAuthenticationChallenge(authenticationChallenge,… in didReceiveAuthenticationChallenge()
/external/webkit/Source/WebKit2/
DDerivedSources.make49 DownloadProxy \
DDerivedSources.pro98 DownloadProxy.messages.in \
DWebKit2.pro175 UIProcess/Downloads/DownloadProxy.h \
378 UIProcess/Downloads/DownloadProxy.cpp \
DGNUmakefile.am368 Source/WebKit2/UIProcess/Downloads/DownloadProxy.cpp \
369 Source/WebKit2/UIProcess/Downloads/DownloadProxy.h \
DChangeLog-2011-02-164882 * UIProcess/Downloads/DownloadProxy.cpp:
9732 Need a way to create a new DownloadProxy from an arbitrary resource request
12503 * UIProcess/Downloads/DownloadProxy.messages.in: Added property svn:eol-style.
16785 Call the respective DownloadProxy member functions.
16788 * UIProcess/Downloads/DownloadProxy.cpp:
16789 (WebKit::DownloadProxy::cancel):
16792 (WebKit::DownloadProxy::didFail):
16795 (WebKit::DownloadProxy::didCancel):
16798 * UIProcess/Downloads/DownloadProxy.h:
16799 (WebKit::DownloadProxy::resumeData):
[all …]
DChangeLog276 Return the DownloadProxy returned by createDownloadProxy().
278 Return the DownloadProxy.
285 Call the DownloadProxy's downloadID() function to get the ID.
4043 * UIProcess/Downloads/DownloadProxy.cpp:
4044 (WebKit::DownloadProxy::cancel):
5545 * UIProcess/Downloads/DownloadProxy.cpp:
5546 (WebKit::DownloadProxy::didReceiveAuthenticationChallenge):
5549 * UIProcess/Downloads/DownloadProxy.messages.in:
/external/webkit/Source/WebKit2/WebKit2.xcodeproj/
Dproject.pbxproj195 …D4CA1288AAA700CFD08C /* DownloadProxy.h in Headers */ = {isa = PBXBuildFile; fileRef = 1AB7D4C8128…
196 …4CB1288AAA700CFD08C /* DownloadProxy.cpp in Sources */ = {isa = PBXBuildFile; fileRef = 1AB7D4C912…
1070 …AAA700CFD08C /* DownloadProxy.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType …
1071 …700CFD08C /* DownloadProxy.cpp */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType =…
1072 …B8C000CFD08C /* DownloadProxy.messages.in */ = {isa = PBXFileReference; fileEncoding = 4; lastKnow…
2222 1AB7D4C91288AAA700CFD08C /* DownloadProxy.cpp */,
2223 1AB7D4C81288AAA700CFD08C /* DownloadProxy.h */,
2224 1AB7D5E91288B8C000CFD08C /* DownloadProxy.messages.in */,
3536 1AB7D4CA1288AAA700CFD08C /* DownloadProxy.h in Headers */,
4151 1AB7D4CB1288AAA700CFD08C /* DownloadProxy.cpp in Sources */,