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

Unified Diff: chrome/browser/geolocation/geolocation_permission_context_unittest.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
« no previous file with comments | « chrome/browser/font_family_cache.cc ('k') | chrome/browser/media/router/discovery/dial/dial_registry.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/geolocation/geolocation_permission_context_unittest.cc
diff --git a/chrome/browser/geolocation/geolocation_permission_context_unittest.cc b/chrome/browser/geolocation/geolocation_permission_context_unittest.cc
index 331aa7eec623c66884af63caae09dad8d6b71ec1..163d31ec39bc570cc650726b80c3555a20b49cc0 100644
--- a/chrome/browser/geolocation/geolocation_permission_context_unittest.cc
+++ b/chrome/browser/geolocation/geolocation_permission_context_unittest.cc
@@ -6,6 +6,7 @@
#include <stddef.h>
+#include <map>
#include <set>
#include <string>
#include <utility>
@@ -13,7 +14,6 @@
#include "base/bind.h"
#include "base/command_line.h"
-#include "base/containers/hash_tables.h"
#include "base/gtest_prod_util.h"
#include "base/id_map.h"
#include "base/memory/ptr_util.h"
@@ -210,7 +210,7 @@ class GeolocationPermissionContextTests
// A map between renderer child id and a pair represending the bridge id and
// whether the requested permission was allowed.
- base::hash_map<int, std::pair<int, bool> > responses_;
+ std::map<int, std::pair<int, bool>> responses_;
// For testing the PermissionRequestManager on Android
base::test::ScopedFeatureList scoped_feature_list_;
« no previous file with comments | « chrome/browser/font_family_cache.cc ('k') | chrome/browser/media/router/discovery/dial/dial_registry.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698