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

Unified Diff: components/sync_bookmarks/bookmark_model_associator.cc

Issue 2743713005: [sync] use std::multimap for BookmarkNodeMap (Closed)
Patch Set: Created 3 years, 9 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync_bookmarks/bookmark_model_associator.cc
diff --git a/components/sync_bookmarks/bookmark_model_associator.cc b/components/sync_bookmarks/bookmark_model_associator.cc
index 2305bb1fd9b14de368c399124c93495d149d0b43..8376ee04c2c4ba9d389f79063addd2019c57d400 100644
--- a/components/sync_bookmarks/bookmark_model_associator.cc
+++ b/components/sync_bookmarks/bookmark_model_associator.cc
@@ -94,7 +94,7 @@ class BookmarkNodeFinder {
// Maps bookmark node titles to instances, duplicates allowed.
// Titles are converted to the sync internal format before
// being used as keys for the map.
- using BookmarkNodeMap = base::hash_multimap<std::string, const BookmarkNode*>;
+ using BookmarkNodeMap = std::multimap<std::string, const BookmarkNode*>;
using BookmarkNodeRange =
std::pair<BookmarkNodeMap::iterator, BookmarkNodeMap::iterator>;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698