Index: net/quic/quic_packet_creator.h |
diff --git a/net/quic/quic_packet_creator.h b/net/quic/quic_packet_creator.h |
index a3c30e786e92fca71711d59e4c3831b02a8bec00..32ca2bc63211e8e1ea0303f69461230dae9ea000 100644 |
--- a/net/quic/quic_packet_creator.h |
+++ b/net/quic/quic_packet_creator.h |
@@ -14,6 +14,7 @@ |
#include <stddef.h> |
#include <string> |
+#include <unordered_map> |
#include <utility> |
#include <vector> |
@@ -389,7 +390,7 @@ class NET_EXPORT_PRIVATE QuicPacketCreator { |
SerializedPacket packet_; |
// Map mapping path_id to last sent packet number on the path. |
- hash_map<QuicPathId, QuicPacketNumber> multipath_packet_number_; |
+ std::unordered_map<QuicPathId, QuicPacketNumber> multipath_packet_number_; |
// FEC related fields. |
// True when creator is requested to turn on FEC protection. False otherwise. |