| Index: content/browser/download/download_request_handle.cc
|
| diff --git a/content/browser/download/download_request_handle.cc b/content/browser/download/download_request_handle.cc
|
| index 35b1125761675d4482163379e012c523f7c9c3dc..a8a536ed840be15870adbff6dc8c2b9f5cf8e42a 100644
|
| --- a/content/browser/download/download_request_handle.cc
|
| +++ b/content/browser/download/download_request_handle.cc
|
| @@ -75,6 +75,14 @@ void DownloadRequestHandle::CancelRequest() const {
|
| base::Bind(&DownloadResourceHandler::CancelRequest, handler_));
|
| }
|
|
|
| +void DownloadRequestHandle::SetRequestId(int new_request_id) {
|
| + request_id_ = new_request_id;
|
| +}
|
| +
|
| +int DownloadRequestHandle::RequestId() const {
|
| + return request_id_;
|
| +}
|
| +
|
| std::string DownloadRequestHandle::DebugString() const {
|
| return base::StringPrintf("{"
|
| " child_id = %d"
|
|
|