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

Unified Diff: components/offline_pages/core/prefetch/prefetch_item.cc

Issue 2879013002: Create skeleton for the Prefetching store and initial pipeline step. (Closed)
Patch Set: Made construction params a cost&. Created 3 years, 7 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/offline_pages/core/prefetch/prefetch_item.cc
diff --git a/components/offline_pages/core/prefetch/prefetch_item.cc b/components/offline_pages/core/prefetch/prefetch_item.cc
index 8e1119d4f694ed90e7f1d0126d37a5ed423b1bd8..3c435bb20348849bf38c38b669054c410e0ad66a 100644
--- a/components/offline_pages/core/prefetch/prefetch_item.cc
+++ b/components/offline_pages/core/prefetch/prefetch_item.cc
@@ -13,9 +13,9 @@ PrefetchItem::PrefetchItem(const PrefetchItem& other) = default;
PrefetchItem::~PrefetchItem(){};
bool PrefetchItem::operator==(const PrefetchItem& other) const {
- return guid == other.guid && client_name_space == other.client_name_space &&
- client_id == other.client_id && state == other.state &&
- url == other.url && final_archived_url == other.final_archived_url &&
+ return guid == other.guid && client_id == other.client_id &&
+ state == other.state && url == other.url &&
+ final_archived_url == other.final_archived_url &&
request_archive_attempt_count == other.request_archive_attempt_count &&
operation_name == other.operation_name &&
archive_body_name == other.archive_body_name &&

Powered by Google App Engine
This is Rietveld 408576698