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

Unified Diff: components/bookmarks/browser/bookmark_storage.h

Issue 2569333003: Rename BookmarkIndex to TitledUrlIndex and BookmarkMatch to TitledUrlMatch (Closed)
Patch Set: fix bookmark_bridge.cc Created 4 years 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
« no previous file with comments | « components/bookmarks/browser/bookmark_model.cc ('k') | components/bookmarks/browser/bookmark_storage.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/bookmarks/browser/bookmark_storage.h
diff --git a/components/bookmarks/browser/bookmark_storage.h b/components/bookmarks/browser/bookmark_storage.h
index 2496e42c34f247464067efc5f85826a345ebfdc6..6f86188d3fcc3b92161e009855942575add58712 100644
--- a/components/bookmarks/browser/bookmark_storage.h
+++ b/components/bookmarks/browser/bookmark_storage.h
@@ -17,8 +17,8 @@
#include "base/macros.h"
#include "base/memory/ref_counted.h"
#include "base/memory/weak_ptr.h"
-#include "components/bookmarks/browser/bookmark_index.h"
#include "components/bookmarks/browser/bookmark_node.h"
+#include "components/bookmarks/browser/titled_url_index.h"
namespace base {
class SequencedTaskRunner;
@@ -51,7 +51,7 @@ class BookmarkLoadDetails {
BookmarkPermanentNode* other_folder_node,
BookmarkPermanentNode* mobile_folder_node,
const LoadExtraCallback& load_extra_callback,
- BookmarkIndex* index,
+ TitledUrlIndex* index,
int64_t max_id);
~BookmarkLoadDetails();
@@ -79,8 +79,8 @@ class BookmarkLoadDetails {
BookmarkPermanentNodeList owned_extra_nodes() {
return std::move(extra_nodes_);
}
- BookmarkIndex* index() { return index_.get(); }
- std::unique_ptr<BookmarkIndex> owned_index() { return std::move(index_); }
+ TitledUrlIndex* index() { return index_.get(); }
+ std::unique_ptr<TitledUrlIndex> owned_index() { return std::move(index_); }
const BookmarkNode::MetaInfoMap& model_meta_info_map() const {
return model_meta_info_map_;
@@ -125,7 +125,7 @@ class BookmarkLoadDetails {
std::unique_ptr<BookmarkPermanentNode> mobile_folder_node_;
LoadExtraCallback load_extra_callback_;
BookmarkPermanentNodeList extra_nodes_;
- std::unique_ptr<BookmarkIndex> index_;
+ std::unique_ptr<TitledUrlIndex> index_;
BookmarkNode::MetaInfoMap model_meta_info_map_;
int64_t model_sync_transaction_version_;
int64_t max_id_;
« no previous file with comments | « components/bookmarks/browser/bookmark_model.cc ('k') | components/bookmarks/browser/bookmark_storage.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698