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

Unified Diff: components/history/core/browser/download_row.cc

Issue 2705283003: Added last_access_time to DownloadItem and History DB (Closed)
Patch Set: rebase origin/master 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: components/history/core/browser/download_row.cc
diff --git a/components/history/core/browser/download_row.cc b/components/history/core/browser/download_row.cc
index a377766a5f23f33819d14a978ac6c90e7a0c498a..fac2b5caa2e8196bf35289313d9ac9e36c00a07b 100644
--- a/components/history/core/browser/download_row.cc
+++ b/components/history/core/browser/download_row.cc
@@ -31,8 +31,8 @@ DownloadRow::DownloadRow(
const std::string& http_method,
const std::string& mime_type,
const std::string& original_mime_type,
- const base::Time& start,
- const base::Time& end,
+ base::Time start,
+ base::Time end,
const std::string& etag,
const std::string& last_modified,
int64_t received,
@@ -44,6 +44,7 @@ DownloadRow::DownloadRow(
DownloadId id,
const std::string& guid,
bool download_opened,
+ base::Time last_access,
const std::string& ext_id,
const std::string& ext_name,
const std::vector<DownloadSliceInfo>& download_slice_info)
@@ -70,6 +71,7 @@ DownloadRow::DownloadRow(
id(id),
guid(guid),
opened(download_opened),
+ last_access_time(last_access),
by_ext_id(ext_id),
by_ext_name(ext_name),
download_slice_info(download_slice_info) {}
@@ -92,6 +94,7 @@ bool DownloadRow::operator==(const DownloadRow& rhs) const {
danger_type == rhs.danger_type &&
interrupt_reason == rhs.interrupt_reason && hash == rhs.hash &&
id == rhs.id && guid == rhs.guid && opened == rhs.opened &&
+ last_access_time == rhs.last_access_time &&
by_ext_id == rhs.by_ext_id && by_ext_name == rhs.by_ext_name &&
download_slice_info == rhs.download_slice_info;
}
« no previous file with comments | « components/history/core/browser/download_row.h ('k') | components/history/core/browser/history_backend_db_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698