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

Unified Diff: chrome/browser/history/history.h

Issue 11363222: Persist download interrupt reason, both target and current paths, and url_chain. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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: chrome/browser/history/history.h
diff --git a/chrome/browser/history/history.h b/chrome/browser/history/history.h
index 6c5cf34b2f9b8f520d353448544df6405ae78c67..5413289cc9b7da7d48fe9b367d0b755e0bae8472 100644
--- a/chrome/browser/history/history.h
+++ b/chrome/browser/history/history.h
@@ -493,9 +493,11 @@ class HistoryService : public CancelableRequestProvider,
// the database with no need for a callback.
void UpdateDownload(const content::DownloadPersistentStoreInfo& data);
- // Called to update the history service about the path of a download.
+ // Called to update the history service about the paths of a download.
// This is a 'fire and forget' query.
- void UpdateDownloadPath(const FilePath& path, int64 db_handle);
+ void UpdateDownloadPath(const FilePath& target_path,
+ const FilePath& current_path,
+ int64 db_handle);
// Permanently remove a download from the history system. This is a 'fire and
// forget' operation.

Powered by Google App Engine
This is Rietveld 408576698