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

Unified Diff: chrome/browser/android/history_report/data_provider.cc

Issue 2829163004: Remove uses of base::hash_map from //chrome (Closed)
Patch Set: Downloads back Created 3 years, 6 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: chrome/browser/android/history_report/data_provider.cc
diff --git a/chrome/browser/android/history_report/data_provider.cc b/chrome/browser/android/history_report/data_provider.cc
index 7fa938bb0a0af756bac02a0b43169d014a6f9f01..ce89fe2dd9a2e0f140cdab792524a1e825dcb76c 100644
--- a/chrome/browser/android/history_report/data_provider.cc
+++ b/chrome/browser/android/history_report/data_provider.cc
@@ -6,8 +6,9 @@
#include <stddef.h>
+#include <map>
+
#include "base/bind.h"
-#include "base/containers/hash_tables.h"
#include "base/logging.h"
#include "base/synchronization/waitable_event.h"
#include "chrome/browser/android/history_report/delta_file_commons.h"
@@ -27,7 +28,7 @@ using bookmarks::BookmarkModel;
namespace {
static bool g_is_debug = false;
-typedef base::hash_map<std::string, BookmarkModel::URLAndTitle*> BookmarkMap;
+using BookmarkMap = std::map<std::string, BookmarkModel::URLAndTitle*>;
struct Context {
history::HistoryService* history_service;
« no previous file with comments | « chrome/browser/android/data_usage/external_data_use_reporter.h ('k') | chrome/browser/android/thumbnail/thumbnail_cache.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698