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

Unified Diff: components/offline_pages/offline_page_model_impl.cc

Issue 2412823002: Improve the page download: (Closed)
Patch Set: fix compile Created 4 years, 2 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/offline_page_model_impl.cc
diff --git a/components/offline_pages/offline_page_model_impl.cc b/components/offline_pages/offline_page_model_impl.cc
index e16d547580b89d4f61dc38ace7730f3bad5a1066..0a5094fb876b41b3e04a0327b3c3871d1ad70f10 100644
--- a/components/offline_pages/offline_page_model_impl.cc
+++ b/components/offline_pages/offline_page_model_impl.cc
@@ -357,7 +357,7 @@ void OfflinePageModelImpl::SavePage(
}
// If we already have an offline id, use it. If not, generate one.
- if (proposed_offline_id == 0l)
+ if (proposed_offline_id == kInvalidOfflineId)
proposed_offline_id = GenerateOfflineId();
archiver->CreateArchive(

Powered by Google App Engine
This is Rietveld 408576698