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

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, 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_create_info.cc
diff --git a/content/browser/download/download_create_info.cc b/content/browser/download/download_create_info.cc
index afd95a742910778b001708de40d202ae99c3fc96..8c435197cb12d84aa77aa838c4d7d7b3a53c60d5 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