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

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

Issue 10689093: Move Rename functionality from DownloadFileManager to DownloadFileImple. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merged to LKGR. Created 8 years, 5 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: content/browser/download/download_item_impl.h
diff --git a/content/browser/download/download_item_impl.h b/content/browser/download/download_item_impl.h
index 96346e9846ccf6a6521994f98156c067b0662e10..37656d9f2523387300803d735fd58b02a4013042 100644
--- a/content/browser/download/download_item_impl.h
+++ b/content/browser/download/download_item_impl.h
@@ -254,11 +254,13 @@ class CONTENT_EXPORT DownloadItemImpl : public content::DownloadItem {
// Callback invoked when the download has been renamed to its final name.
void OnDownloadRenamedToFinalName(DownloadFileManager* file_manager,
+ content::DownloadInterruptReason reason,
const FilePath& full_path);
// Callback invoked when the download has been renamed to its intermediate
// name.
- void OnDownloadRenamedToIntermediateName(const FilePath& full_path);
+ void OnDownloadRenamedToIntermediateName(
+ content::DownloadInterruptReason reason, const FilePath& full_path);
// Callback from file thread when we release the DownloadFile.
void OnDownloadFileReleased();

Powered by Google App Engine
This is Rietveld 408576698