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

Unified Diff: components/offline_pages/offline_page_metadata_store_impl.cc

Issue 1904613005: [Offline pages] Removing bookmarks dependency from offline pages component (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix unit tests compilation Created 4 years, 8 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_metadata_store_impl.cc
diff --git a/components/offline_pages/offline_page_metadata_store_impl.cc b/components/offline_pages/offline_page_metadata_store_impl.cc
index 7b96920b0c04f3f0abd8ca3c7f10aee9f0148599..ab508a1add8f857362d78812a9d0f7b8ac5e7751 100644
--- a/components/offline_pages/offline_page_metadata_store_impl.cc
+++ b/components/offline_pages/offline_page_metadata_store_impl.cc
@@ -174,7 +174,7 @@ void OfflinePageMetadataStoreImpl::LoadDone(
LOG(ERROR) << "unexpected entry missing bookmark id";
continue;
}
- item.client_id.name_space = offline_pages::BOOKMARK_NAMESPACE;
+ item.client_id.name_space = offline_pages::kBookmarkNamespace;
item.client_id.id = base::Int64ToString(entry.deprecated_bookmark_id());
OfflinePageEntry upgraded_entry;

Powered by Google App Engine
This is Rietveld 408576698