summaryrefslogtreecommitdiff
path: root/chromium/components/offline_pages/core/offline_page_item.cc
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2018-08-24 12:15:48 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2018-08-28 13:30:04 +0000
commitb014812705fc80bff0a5c120dfcef88f349816dc (patch)
tree25a2e2d9fa285f1add86aa333389a839f81a39ae /chromium/components/offline_pages/core/offline_page_item.cc
parent9f4560b1027ae06fdb497023cdcaf91b8511fa74 (diff)
downloadqtwebengine-chromium-b014812705fc80bff0a5c120dfcef88f349816dc.tar.gz
BASELINE: Update Chromium to 68.0.3440.125
Change-Id: I23f19369e01f688e496f5bf179abb521ad73874f Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/components/offline_pages/core/offline_page_item.cc')
-rw-r--r--chromium/components/offline_pages/core/offline_page_item.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chromium/components/offline_pages/core/offline_page_item.cc b/chromium/components/offline_pages/core/offline_page_item.cc
index 5790e3c3401..e32196f15b5 100644
--- a/chromium/components/offline_pages/core/offline_page_item.cc
+++ b/chromium/components/offline_pages/core/offline_page_item.cc
@@ -74,7 +74,7 @@ OfflinePageItem::~OfflinePageItem() {}
bool OfflinePageItem::operator==(const OfflinePageItem& other) const {
return url == other.url && offline_id == other.offline_id &&
client_id == other.client_id && file_path == other.file_path &&
- creation_time == other.creation_time &&
+ file_size == other.file_size && creation_time == other.creation_time &&
last_access_time == other.last_access_time &&
access_count == other.access_count && title == other.title &&
flags == other.flags && original_url == other.original_url &&