| Index: net/disk_cache/blockfile/backend_impl.h
|
| diff --git a/net/disk_cache/blockfile/backend_impl.h b/net/disk_cache/blockfile/backend_impl.h
|
| index 86c7c77f220bff39c08b367e7500e5bf7e20c9b5..89edef2eb58417447921e0d16655ce001a21ff0e 100644
|
| --- a/net/disk_cache/blockfile/backend_impl.h
|
| +++ b/net/disk_cache/blockfile/backend_impl.h
|
| @@ -9,8 +9,7 @@
|
|
|
| #include <stdint.h>
|
|
|
| -#include <unordered_map>
|
| -
|
| +#include "base/containers/hash_tables.h"
|
| #include "base/files/file_path.h"
|
| #include "base/macros.h"
|
| #include "base/memory/ref_counted.h"
|
| @@ -294,7 +293,7 @@
|
| void OnExternalCacheHit(const std::string& key) override;
|
|
|
| private:
|
| - using EntriesMap = std::unordered_map<CacheAddr, EntryImpl*>;
|
| + typedef base::hash_map<CacheAddr, EntryImpl*> EntriesMap;
|
| class IteratorImpl;
|
|
|
| // Creates a new backing file for the cache index.
|
|
|