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

Unified Diff: content/public/browser/download_manager.h

Issue 2705283003: Added last_access_time to DownloadItem and History DB (Closed)
Patch Set: Fix tests Created 3 years, 10 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/public/browser/download_manager.h
diff --git a/content/public/browser/download_manager.h b/content/public/browser/download_manager.h
index 4c467923d638b1c8a90e2fc7312a986f56f56dbb..46968dd623d04844be037bbd98a08018da1bc422 100644
--- a/content/public/browser/download_manager.h
+++ b/content/public/browser/download_manager.h
@@ -150,7 +150,8 @@ class CONTENT_EXPORT DownloadManager : public base::SupportsUserData::Data {
DownloadItem::DownloadState state,
DownloadDangerType danger_type,
DownloadInterruptReason interrupt_reason,
- bool opened) = 0;
+ bool opened,
+ const base::Time& last_access_time) = 0;
// The number of in progress (including paused) downloads.
// Performance note: this loops over all items. If profiling finds that this

Powered by Google App Engine
This is Rietveld 408576698