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

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

Issue 2720613002: Downloads: Added transient flag to download item and download database (Closed)
Patch Set: Fixed migration unit test 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 a8470a9030050dd69c32e54a7a0052fa9677ddbd..9d8e674cb026b27de6b5b67c6301e9bccc835938 100644
--- a/components/history/core/browser/download_row.cc
+++ b/components/history/core/browser/download_row.cc
@@ -45,6 +45,7 @@ DownloadRow::DownloadRow(
const std::string& guid,
bool download_opened,
const base::Time& last_access,
+ bool visible,
const std::string& ext_id,
const std::string& ext_name,
const std::vector<DownloadSliceInfo>& download_slice_info)
@@ -72,6 +73,7 @@ DownloadRow::DownloadRow(
guid(guid),
opened(download_opened),
last_access_time(last_access),
+ visible(visible),
by_ext_id(ext_id),
by_ext_name(ext_name),
download_slice_info(download_slice_info) {}
@@ -94,7 +96,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 &&
+ last_access_time == rhs.last_access_time && visible == rhs.visible &&
by_ext_id == rhs.by_ext_id && by_ext_name == rhs.by_ext_name &&
download_slice_info == rhs.download_slice_info;
}

Powered by Google App Engine
This is Rietveld 408576698