Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(25)

Unified Diff: content/browser/download/download_request_handle.h

Issue 8404049: Added member data to classes to support download resumption. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: DownloadSaveInfo::offset is now int64. Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 43762e6e6a96959704568cdf1af71ae6505d6e1b..190bc45ac176727c7162ccfc216827b63df7ab72 100644
--- a/content/browser/download/download_request_handle.h
+++ b/content/browser/download/download_request_handle.h
@@ -29,11 +29,11 @@ class CONTENT_EXPORT DownloadRequestHandleInterface {
virtual TabContents* GetTabContents() const = 0;
virtual DownloadManager* GetDownloadManager() const = 0;
- // Pause or resume the matching URL request.
+ // Pauses or resumes the matching URL request.
virtual void PauseRequest() const = 0;
virtual void ResumeRequest() const = 0;
- // Cancel the request.
+ // Cancels the request.
virtual void CancelRequest() const = 0;
// Describe the object.

Powered by Google App Engine
This is Rietveld 408576698