1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "content/browser/download/download_request_handle.h"
#include "base/bind.h"
#include "base/stringprintf.h"
#include "content/browser/renderer_host/render_view_host_impl.h"
#include "content/browser/web_contents/web_contents_impl.h"
#include "content/public/browser/browser_context.h"
#include "content/public/browser/browser_thread.h"
namespace content {
DownloadRequestHandle::~DownloadRequestHandle() {
}
DownloadRequestHandle::DownloadRequestHandle()
: child_id_(-1),
render_view_id_(-1),
request_id_(-1) {
}
DownloadRequestHandle::DownloadRequestHandle(
const base::WeakPtr<DownloadResourceHandler>& handler,
int child_id,
int render_view_id,
int request_id)
: handler_(handler),
child_id_(child_id),
render_view_id_(render_view_id),
request_id_(request_id) {
DCHECK(handler_);
}
WebContents* DownloadRequestHandle::GetWebContents() const {
RenderViewHostImpl* render_view_host =
RenderViewHostImpl::FromID(child_id_, render_view_id_);
if (!render_view_host)
return NULL;
return render_view_host->GetDelegate()->GetAsWebContents();
}
DownloadManager* DownloadRequestHandle::GetDownloadManager() const {
RenderViewHostImpl* rvh = RenderViewHostImpl::FromID(
child_id_, render_view_id_);
if (rvh == NULL)
return NULL;
RenderProcessHost* rph = rvh->GetProcess();
if (rph == NULL)
return NULL;
BrowserContext* context = rph->GetBrowserContext();
if (context == NULL)
return NULL;
return BrowserContext::GetDownloadManager(context);
}
void DownloadRequestHandle::PauseRequest() const {
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
base::Bind(&DownloadResourceHandler::PauseRequest, handler_));
}
void DownloadRequestHandle::ResumeRequest() const {
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
base::Bind(&DownloadResourceHandler::ResumeRequest, handler_));
}
void DownloadRequestHandle::CancelRequest() const {
BrowserThread::PostTask(
BrowserThread::IO, FROM_HERE,
base::Bind(&DownloadResourceHandler::CancelRequest, handler_));
}
std::string DownloadRequestHandle::DebugString() const {
return base::StringPrintf("{"
" child_id = %d"
" render_view_id = %d"
" request_id = %d"
"}",
child_id_,
render_view_id_,
request_id_);
}
} // namespace content
|