summaryrefslogtreecommitdiff
path: root/chromium/components/download/database/in_progress/in_progress_info.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/components/download/database/in_progress/in_progress_info.cc')
-rw-r--r--chromium/components/download/database/in_progress/in_progress_info.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chromium/components/download/database/in_progress/in_progress_info.cc b/chromium/components/download/database/in_progress/in_progress_info.cc
index 2114b3c095b..5523103fdfa 100644
--- a/chromium/components/download/database/in_progress/in_progress_info.cc
+++ b/chromium/components/download/database/in_progress/in_progress_info.cc
@@ -13,7 +13,9 @@ InProgressInfo::InProgressInfo(const InProgressInfo& other) = default;
InProgressInfo::~InProgressInfo() = default;
bool InProgressInfo::operator==(const InProgressInfo& other) const {
- return url_chain == other.url_chain && site_url == other.site_url &&
+ return url_chain == other.url_chain &&
+ serialized_embedder_download_data ==
+ other.serialized_embedder_download_data &&
referrer_url == other.referrer_url && tab_url == other.tab_url &&
tab_referrer_url == other.tab_referrer_url &&
fetch_error_body == other.fetch_error_body &&