Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(55)

Unified Diff: net/quic/quic_multipath_received_packet_manager.h

Issue 1660593004: Landing Recent QUIC changes until 01/28/2016 18:41 UTC (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Final_0202
Patch Set: Created 4 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/quic/quic_framer.h ('k') | net/quic/quic_multipath_transmissions_map.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_multipath_received_packet_manager.h
diff --git a/net/quic/quic_multipath_received_packet_manager.h b/net/quic/quic_multipath_received_packet_manager.h
index e33c5fccdb6bea2f2a09540f5d73de1cdd1018c1..dba9244134d53e8a73974e839afa365ec0b2f199 100644
--- a/net/quic/quic_multipath_received_packet_manager.h
+++ b/net/quic/quic_multipath_received_packet_manager.h
@@ -8,6 +8,7 @@
#ifndef NET_QUIC_QUIC_MULTIPATH_RECEIVED_PACKET_MANAGER_H_
#define NET_QUIC_QUIC_MULTIPATH_RECEIVED_PACKET_MANAGER_H_
+#include <unordered_map>
#include <vector>
#include "net/quic/quic_protocol.h"
@@ -21,7 +22,7 @@ class QuicMultipathReceivedPacketManagerPeer;
class NET_EXPORT_PRIVATE QuicMultipathReceivedPacketManager {
public:
- typedef base::hash_map<QuicPathId, QuicReceivedPacketManager*>
+ typedef std::unordered_map<QuicPathId, QuicReceivedPacketManager*>
MultipathReceivedPacketManagerMap;
explicit QuicMultipathReceivedPacketManager(QuicConnectionStats* stats);
« no previous file with comments | « net/quic/quic_framer.h ('k') | net/quic/quic_multipath_transmissions_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698