| Index: content/browser/download/download_request_handle.h
|
| diff --git a/content/browser/download/download_request_handle.h b/content/browser/download/download_request_handle.h
|
| index f06985c5ec7ce754a03d1e5dd4b6d4df6ff297d9..e7a56224abb63a6fcde5bb2ba977993fe4f49b10 100644
|
| --- a/content/browser/download/download_request_handle.h
|
| +++ b/content/browser/download/download_request_handle.h
|
| @@ -38,7 +38,13 @@ class CONTENT_EXPORT DownloadRequestHandleInterface {
|
| // Cancels the request.
|
| virtual void CancelRequest() const = 0;
|
|
|
| - // Describe the object.
|
| + // Sets the request ID when resuming a download.
|
| + virtual void SetRequestId(int new_request_id) = 0;
|
| +
|
| + // Gets the request ID for resuming a download.
|
| + virtual int RequestId() const = 0;
|
| +
|
| + // Describes the object.
|
| virtual std::string DebugString() const = 0;
|
| };
|
|
|
| @@ -69,6 +75,8 @@ class CONTENT_EXPORT DownloadRequestHandle
|
| virtual void PauseRequest() const OVERRIDE;
|
| virtual void ResumeRequest() const OVERRIDE;
|
| virtual void CancelRequest() const OVERRIDE;
|
| + virtual void SetRequestId(int new_request_id) OVERRIDE;
|
| + virtual int RequestId() const OVERRIDE;
|
| virtual std::string DebugString() const OVERRIDE;
|
|
|
| private:
|
|
|