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

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

Issue 2665243003: add a download slices table into history download db (Closed)
Patch Set: add test file to BUILD.gn 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 8c14601feede955e19930788e4f5775fe11f2159..a377766a5f23f33819d14a978ac6c90e7a0c498a 100644
--- a/components/history/core/browser/download_row.cc
+++ b/components/history/core/browser/download_row.cc
@@ -20,31 +20,33 @@ DownloadRow::DownloadRow()
// has no meaning unless |state| is equal to kStateInterrupted.
}
-DownloadRow::DownloadRow(const base::FilePath& current_path,
- const base::FilePath& target_path,
- const std::vector<GURL>& url_chain,
- const GURL& referrer_url,
- const GURL& site_url,
- const GURL& tab_url,
- const GURL& tab_referrer_url,
- const std::string& http_method,
- const std::string& mime_type,
- const std::string& original_mime_type,
- const base::Time& start,
- const base::Time& end,
- const std::string& etag,
- const std::string& last_modified,
- int64_t received,
- int64_t total,
- DownloadState download_state,
- DownloadDangerType danger_type,
- DownloadInterruptReason interrupt_reason,
- const std::string& hash,
- DownloadId id,
- const std::string& guid,
- bool download_opened,
- const std::string& ext_id,
- const std::string& ext_name)
+DownloadRow::DownloadRow(
+ const base::FilePath& current_path,
+ const base::FilePath& target_path,
+ const std::vector<GURL>& url_chain,
+ const GURL& referrer_url,
+ const GURL& site_url,
+ const GURL& tab_url,
+ const GURL& tab_referrer_url,
+ const std::string& http_method,
+ const std::string& mime_type,
+ const std::string& original_mime_type,
+ const base::Time& start,
+ const base::Time& end,
+ const std::string& etag,
+ const std::string& last_modified,
+ int64_t received,
+ int64_t total,
+ DownloadState download_state,
+ DownloadDangerType danger_type,
+ DownloadInterruptReason interrupt_reason,
+ const std::string& hash,
+ DownloadId id,
+ const std::string& guid,
+ bool download_opened,
+ const std::string& ext_id,
+ const std::string& ext_name,
+ const std::vector<DownloadSliceInfo>& download_slice_info)
: current_path(current_path),
target_path(target_path),
url_chain(url_chain),
@@ -69,7 +71,8 @@ DownloadRow::DownloadRow(const base::FilePath& current_path,
guid(guid),
opened(download_opened),
by_ext_id(ext_id),
- by_ext_name(ext_name) {}
+ by_ext_name(ext_name),
+ download_slice_info(download_slice_info) {}
DownloadRow::DownloadRow(const DownloadRow& other) = default;
@@ -89,7 +92,8 @@ 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 &&
- by_ext_id == rhs.by_ext_id && by_ext_name == rhs.by_ext_name;
+ by_ext_id == rhs.by_ext_id && by_ext_name == rhs.by_ext_name &&
+ download_slice_info == rhs.download_slice_info;
}
} // namespace history
« no previous file with comments | « components/history/core/browser/download_row.h ('k') | components/history/core/browser/download_slice_info.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698