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

Unified Diff: content/browser/download/download_create_info.cc

Issue 8404049: Added member data to classes to support download resumption. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged with trunk Created 9 years, 2 months 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_create_info.cc
diff --git a/content/browser/download/download_create_info.cc b/content/browser/download/download_create_info.cc
index 72bb3237f5131709d0a4d6f2e4e076655cd479d4..879329094ca6951d68985ca1b5bfe0d446c5d9a2 100644
--- a/content/browser/download/download_create_info.cc
+++ b/content/browser/download/download_create_info.cc
@@ -29,6 +29,8 @@ DownloadCreateInfo::DownloadCreateInfo(const FilePath& path,
has_user_gesture(has_user_gesture),
transition_type(transition_type),
db_handle(0),
+ continued_download(false),
+ server_interrupt_reason(DOWNLOAD_INTERRUPT_REASON_NONE),
prompt_user_for_save_location(false) {
}
@@ -41,6 +43,8 @@ DownloadCreateInfo::DownloadCreateInfo()
has_user_gesture(false),
transition_type(content::PAGE_TRANSITION_LINK),
db_handle(0),
+ continued_download(false),
+ server_interrupt_reason(DOWNLOAD_INTERRUPT_REASON_NONE),
prompt_user_for_save_location(false) {
}

Powered by Google App Engine
This is Rietveld 408576698