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

Unified Diff: chrome/browser/download/download_manager.h

Issue 6060008: Adding active_downloads_ map. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Extend lifetime of active_downloads_ until download is complete. Created 9 years, 12 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/download/download_manager.h
diff --git a/chrome/browser/download/download_manager.h b/chrome/browser/download/download_manager.h
index 4f5ebcfb1cbcb6722f35c05b30642787927fb08e..b0649a06bedd032c76764ac901a9932fe545d38a 100644
--- a/chrome/browser/download/download_manager.h
+++ b/chrome/browser/download/download_manager.h
@@ -119,6 +119,7 @@ class DownloadManager
void StartDownload(DownloadCreateInfo* info);
void UpdateDownload(int32 download_id, int64 size);
void OnAllDataSaved(int32 download_id, int64 size);
+ void OnDownloadFileCompleted(int32 download_id);
// Called from a view when a user clicks a UI button or link.
void DownloadCancelled(int32 download_id);
@@ -332,6 +333,7 @@ class DownloadManager
DownloadSet downloads_;
DownloadMap history_downloads_;
DownloadMap in_progress_;
+ DownloadMap active_downloads_;
Randy Smith (Not in Mondays) 2011/01/03 22:02:22 Add a comment above parallel to the ones already t
ahendrickson 2011/01/04 16:51:38 Done.
#if !defined(NDEBUG)
DownloadSet save_page_as_downloads_;
#endif

Powered by Google App Engine
This is Rietveld 408576698