Index: net/disk_cache/simple/simple_backend_impl.h |
diff --git a/net/disk_cache/simple/simple_backend_impl.h b/net/disk_cache/simple/simple_backend_impl.h |
index ebb96c7caca6a14d750108aed74eea9164ad109b..9f1e90d3806eabc07067e7a86076104c7fe05e5a 100644 |
--- a/net/disk_cache/simple/simple_backend_impl.h |
+++ b/net/disk_cache/simple/simple_backend_impl.h |
@@ -12,6 +12,7 @@ |
#include "base/compiler_specific.h" |
#include "base/files/file_path.h" |
+#include "base/hash_tables.h" |
#include "base/memory/ref_counted.h" |
#include "base/memory/scoped_ptr.h" |
#include "base/memory/weak_ptr.h" |
@@ -84,7 +85,7 @@ class NET_EXPORT_PRIVATE SimpleBackendImpl : public Backend, |
virtual void OnExternalCacheHit(const std::string& key) OVERRIDE; |
private: |
- typedef std::map<uint64, base::WeakPtr<SimpleEntryImpl> > EntryMap; |
+ typedef base::hash_map<uint64, base::WeakPtr<SimpleEntryImpl> > EntryMap; |
pasko
2013/05/17 10:31:33
This change cannot make any significant improvemen
digit1
2013/05/17 14:36:18
I feel that these statements are contradicting eac
pasko
2013/05/17 16:57:19
You are right, there is practically no difference.
|
typedef base::Callback<void(uint64 max_size, int result)> |
InitializeIndexCallback; |