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

Unified Diff: chrome/browser/history/download_create_info.cc

Issue 3127008: Preliminary work on resuming downloads whose connections have expired.
Patch Set: Waiting to send download automation error message until after other downloads are canceled. Created 10 years, 3 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: chrome/browser/history/download_create_info.cc
diff --git a/chrome/browser/history/download_create_info.cc b/chrome/browser/history/download_create_info.cc
index 955caede2239de99806f124d43e8b5790c45bec8..9f3c59ddfff610cebc70414c6d5beb275ff58dfb 100644
--- a/chrome/browser/history/download_create_info.cc
+++ b/chrome/browser/history/download_create_info.cc
@@ -25,6 +25,7 @@ DownloadCreateInfo::DownloadCreateInfo(const FilePath& path,
db_handle(0),
prompt_user_for_save_location(false),
is_dangerous(false),
+ is_partial_download(false),
is_extension_install(false) {
}
@@ -40,6 +41,7 @@ DownloadCreateInfo::DownloadCreateInfo()
db_handle(0),
prompt_user_for_save_location(false),
is_dangerous(false),
+ is_partial_download(false),
is_extension_install(false) {
}

Powered by Google App Engine
This is Rietveld 408576698