Index: components/leveldb_proto/testing/fake_db.h |
diff --git a/components/leveldb_proto/testing/fake_db.h b/components/leveldb_proto/testing/fake_db.h |
index 7a5e5dd49010621c430dad2afce2abced526352f..2eaf5f89d9cb1b691884bcba9ef758de2d81eb7b 100644 |
--- a/components/leveldb_proto/testing/fake_db.h |
+++ b/components/leveldb_proto/testing/fake_db.h |
@@ -5,6 +5,7 @@ |
#ifndef COMPONENTS_LEVELDB_PROTO_TESTING_FAKE_DB_H_ |
#define COMPONENTS_LEVELDB_PROTO_TESTING_FAKE_DB_H_ |
+#include <map> |
#include <memory> |
#include <string> |
#include <utility> |
@@ -23,7 +24,7 @@ class FakeDB : public ProtoDatabase<T> { |
using Callback = base::Callback<void(bool)>; |
public: |
- using EntryMap = typename base::hash_map<std::string, T>; |
+ using EntryMap = std::map<std::string, T>; |
explicit FakeDB(EntryMap* db); |
~FakeDB() override; |