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

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: Don't update DownloadItem if it's not in progress. Created 9 years, 11 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..159ad8b0336786b1a7509e4b08006e28fc603c36 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 RemoveFromActiveList(int32 download_id);
brettw 2011/01/10 20:49:23 It doesn't seem like this goes with the other func
// Called from a view when a user clicks a UI button or link.
void DownloadCancelled(int32 download_id);
@@ -310,6 +311,10 @@ class DownloadManager
// is the handle returned by the history system, which is unique
// across sessions.
//
+ // |active_downloads_| is a map of all downloads that are currently being
+ // processed. The key is the ID assigned by the ResourceDispatcherHost,
+ // which is unique for the current session.
+ //
// |in_progress_| is a map of all downloads that are in progress and that have
// not yet received a valid history handle. The key is the ID assigned by the
// ResourceDispatcherHost, which is unique for the current session.
@@ -319,11 +324,12 @@ class DownloadManager
// until we are destroyed. It is only used for debugging.
//
// When a download is created through a user action, the corresponding
- // DownloadItem* is placed in |in_progress_| and remains there until it has
- // received a valid handle from the history system. Once it has a valid
- // handle, the DownloadItem* is placed in the |history_downloads_|
- // map. When the download is complete, it is removed from
- // |in_progress_|. Downloads from past sessions read from a
+ // DownloadItem* is placed in |active_downloads_| and remains there until the
+ // download has finished. It is also placed in |in_progress_| and remains
+ // there until it has received a valid handle from the history system. Once
+ // it has a valid handle, the DownloadItem* is placed in the
+ // |history_downloads_| map. When the download is complete, it is removed
+ // from |in_progress_|. Downloads from past sessions read from a
// persisted state from the history system are placed directly into
// |history_downloads_| since they have valid handles in the history system.
typedef std::set<DownloadItem*> DownloadSet;
@@ -332,6 +338,7 @@ class DownloadManager
DownloadSet downloads_;
DownloadMap history_downloads_;
DownloadMap in_progress_;
+ DownloadMap active_downloads_;
#if !defined(NDEBUG)
DownloadSet save_page_as_downloads_;
#endif

Powered by Google App Engine
This is Rietveld 408576698