Index: net/spdy/write_blocked_list.h |
diff --git a/net/spdy/write_blocked_list.h b/net/spdy/write_blocked_list.h |
index cb5599760eb8bfc85c7573f919cf86b61bd0ae7a..76d22da257a577b3dd371aa7668e6a7094c96c56 100644 |
--- a/net/spdy/write_blocked_list.h |
+++ b/net/spdy/write_blocked_list.h |
@@ -9,8 +9,8 @@ |
#include <algorithm> |
#include <deque> |
-#include <unordered_map> |
+#include "base/containers/hash_tables.h" |
#include "base/logging.h" |
#include "net/spdy/spdy_protocol.h" |
@@ -151,7 +151,7 @@ |
private: |
friend class net::test::WriteBlockedListPeer; |
- using StreamToPriorityMap = std::unordered_map<IdType, SpdyPriority>; |
+ typedef base::hash_map<IdType, SpdyPriority> StreamToPriorityMap; |
void AddStream(IdType stream_id, SpdyPriority priority, bool push_back) { |
priority = ClampPriority(priority); |