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

Unified Diff: content/browser/download/download_item_impl.cc

Issue 2439533002: Download Feedback Service should upload all eligible downloads (Closed)
Patch Set: make windows bots happy Created 4 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_item_impl.cc
diff --git a/content/browser/download/download_item_impl.cc b/content/browser/download/download_item_impl.cc
index f2494eb3fc479ad88b90c3c71d59901c646be2cd..9f9eae57ca69e1e02ec65b9d807bf6ec1965e1ab 100644
--- a/content/browser/download/download_item_impl.cc
+++ b/content/browser/download/download_item_impl.cc
@@ -93,6 +93,21 @@ static base::FilePath DownloadFileDetach(
return full_path;
}
+static base::FilePath MakeCopyOfDownloadFile(DownloadFile* download_file) {
+ DCHECK_CURRENTLY_ON(BrowserThread::FILE);
+ base::FilePath temp_file_path;
+ if (base::CreateTemporaryFile(&temp_file_path) &&
+ base::CopyFile(download_file->FullPath(), temp_file_path)) {
+ return temp_file_path;
+ } else {
+ // Deletes the file at |temp_file_path|.
+ if (!base::DirectoryExists(temp_file_path))
+ base::DeleteFile(temp_file_path, false);
+ temp_file_path.clear();
+ return base::FilePath();
+ }
+}
+
static void DownloadFileCancel(std::unique_ptr<DownloadFile> download_file) {
DCHECK_CURRENTLY_ON(BrowserThread::FILE);
download_file->Cancel();
@@ -299,23 +314,32 @@ void DownloadItemImpl::ValidateDangerousDownload() {
}
void DownloadItemImpl::StealDangerousDownload(
+ bool delete_file_afterward,
const AcquireFileCallback& callback) {
DVLOG(20) << __func__ << "() download = " << DebugString(true);
DCHECK_CURRENTLY_ON(BrowserThread::UI);
DCHECK(IsDangerous());
+ DCHECK(AllDataSaved());
- if (download_file_) {
+ if (delete_file_afterward) {
+ if (download_file_) {
+ BrowserThread::PostTaskAndReplyWithResult(
+ BrowserThread::FILE, FROM_HERE,
+ base::Bind(&DownloadFileDetach, base::Passed(&download_file_)),
+ callback);
+ } else {
+ callback.Run(current_path_);
+ }
+ current_path_.clear();
+ Remove();
+ // Download item has now been deleted.
+ } else if (download_file_) {
BrowserThread::PostTaskAndReplyWithResult(
- BrowserThread::FILE,
- FROM_HERE,
- base::Bind(&DownloadFileDetach, base::Passed(&download_file_)),
- callback);
+ BrowserThread::FILE, FROM_HERE,
+ base::Bind(&MakeCopyOfDownloadFile, download_file_.get()), callback);
} else {
callback.Run(current_path_);
}
- current_path_.clear();
- Remove();
- // We have now been deleted.
}
void DownloadItemImpl::Pause() {
@@ -1375,7 +1399,6 @@ void DownloadItemImpl::MaybeCompleteDownload() {
base::Bind(&DownloadItemImpl::MaybeCompleteDownload,
weak_ptr_factory_.GetWeakPtr())))
return;
-
// Confirm we're in the proper set of states to be here; have all data, have a
// history handle, (validated or safe).
DCHECK_EQ(IN_PROGRESS_INTERNAL, state_);
« no previous file with comments | « content/browser/download/download_item_impl.h ('k') | content/browser/download/download_item_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698