Index: net/http/mock_http_cache.h |
diff --git a/net/http/mock_http_cache.h b/net/http/mock_http_cache.h |
index 971b092bce1f68ced1914441b3c9aeb901099a86..86b8e51d758a7945aa20d73245281c3a1cbe72e1 100644 |
--- a/net/http/mock_http_cache.h |
+++ b/net/http/mock_http_cache.h |
@@ -12,8 +12,7 @@ |
#include <stdint.h> |
-#include <unordered_map> |
- |
+#include "base/containers/hash_tables.h" |
#include "base/strings/string_split.h" |
#include "net/disk_cache/disk_cache.h" |
#include "net/http/http_cache.h" |
@@ -156,7 +155,7 @@ |
void ReleaseAll(); |
private: |
- using EntryMap = std::unordered_map<std::string, MockDiskEntry*>; |
+ typedef base::hash_map<std::string, MockDiskEntry*> EntryMap; |
class NotImplementedIterator; |
void CallbackLater(const CompletionCallback& callback, int result); |