Index: content/browser/download/download_manager.cc |
diff --git a/content/browser/download/download_manager.cc b/content/browser/download/download_manager.cc |
index 85c9710863e09024508aeb168cbf14ff8817ffc6..8c35fc80008374ce5ff585f3cfee95d6c03c2207 100644 |
--- a/content/browser/download/download_manager.cc |
+++ b/content/browser/download/download_manager.cc |
@@ -6,11 +6,15 @@ |
#include <iterator> |
+#include "base/bind.h" |
#include "base/callback.h" |
#include "base/file_util.h" |
#include "base/i18n/case_conversion.h" |
#include "base/logging.h" |
#include "base/stl_util.h" |
+#include "base/stringprintf.h" |
+#include "base/synchronization/lock.h" |
+#include "base/sys_string_conversions.h" |
#include "base/task.h" |
#include "build/build_config.h" |
#include "content/browser/browser_context.h" |
@@ -50,6 +54,7 @@ DownloadManager::DownloadManager(DownloadManagerDelegate* delegate, |
DownloadStatusUpdater* status_updater) |
: shutdown_needed_(false), |
browser_context_(NULL), |
+ next_id_(0), |
file_manager_(NULL), |
status_updater_(status_updater->AsWeakPtr()), |
delegate_(delegate), |
@@ -177,6 +182,30 @@ void DownloadManager::SearchDownloads(const string16& query, |
} |
} |
+void DownloadManager::OnPersistentStoreGetNextId(int next_id) { |
+ DVLOG(1) << __FUNCTION__ << " " << next_id; |
+ base::AutoLock lock(next_id_lock_); |
+ // TODO(benjhayden) Delay Profile initialization until here, and set next_id_ |
+ // = next_id. The '+=' works for now because these ids are not yet persisted |
+ // to the database. GetNextId() can allocate zero or more ids starting from 0, |
+ // then this callback can increment next_id_, and the items with lower ids |
+ // won't clash with any other items even though there may be items loaded from |
+ // the history because items from the history don't have valid ids. |
+ next_id_ += next_id; |
+} |
+ |
+DownloadId DownloadManager::GetNextId() { |
+ // May be called on any thread via the GetNextIdThunk. |
+ // TODO(benjhayden) If otr, forward to parent DM. |
+ base::AutoLock lock(next_id_lock_); |
+ return DownloadId(this, next_id_++); |
+} |
+ |
+DownloadManager::GetNextIdThunkType DownloadManager::GetNextIdThunk() { |
+ // TODO(benjhayden) If otr, forward to parent DM. |
+ return base::Bind(&DownloadManager::GetNextId, this); |
+} |
+ |
// Query the history service for information about all persisted downloads. |
bool DownloadManager::Init(content::BrowserContext* browser_context) { |
DCHECK(browser_context); |
@@ -328,7 +357,7 @@ void DownloadManager::ContinueDownloadWithPath(DownloadItem* download, |
BrowserThread::FILE, FROM_HERE, |
NewRunnableMethod( |
file_manager_, &DownloadFileManager::RenameInProgressDownloadFile, |
- download->id(), download_path)); |
+ download->global_id(), download_path)); |
download->Rename(download_path); |
@@ -497,10 +526,10 @@ void DownloadManager::OnDownloadRenamedToFinalName(int download_id, |
DCHECK_EQ(0, uniquifier) << "We should not uniquify SAFE downloads twice"; |
} |
- BrowserThread::PostTask( |
- BrowserThread::FILE, FROM_HERE, |
- NewRunnableMethod( |
- file_manager_, &DownloadFileManager::CompleteDownload, download_id)); |
+ BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, NewRunnableMethod( |
+ file_manager_, |
+ &DownloadFileManager::CompleteDownload, |
+ item->global_id())); |
if (uniquifier) |
item->set_path_uniquifier(uniquifier); |
@@ -571,10 +600,10 @@ void DownloadManager::OnDownloadError(int32 download_id, |
delegate_->UpdateItemInPersistentStore(download); |
} |
- BrowserThread::PostTask( |
- BrowserThread::FILE, FROM_HERE, |
- NewRunnableMethod( |
- file_manager_, &DownloadFileManager::CancelDownload, download_id)); |
+ BrowserThread::PostTask(BrowserThread::FILE, FROM_HERE, NewRunnableMethod( |
+ file_manager_, |
+ &DownloadFileManager::CancelDownload, |
+ download->global_id())); |
} |
void DownloadManager::UpdateDownloadProgress() { |