| Index: net/tools/quic/quic_dispatcher.cc
|
| diff --git a/net/tools/quic/quic_dispatcher.cc b/net/tools/quic/quic_dispatcher.cc
|
| index 758f8a0927c8e530620264dc31cba0d9cecc5aa2..03656661d14e8315b743560c3eda9795069bdbf1 100644
|
| --- a/net/tools/quic/quic_dispatcher.cc
|
| +++ b/net/tools/quic/quic_dispatcher.cc
|
| @@ -649,7 +649,7 @@ void QuicDispatcher::ProcessBufferedChlos(size_t max_connections_to_create) {
|
| for (; new_sessions_allowed_per_event_loop_ > 0;
|
| --new_sessions_allowed_per_event_loop_) {
|
| QuicConnectionId connection_id;
|
| - list<BufferedPacket> packets =
|
| + std::list<BufferedPacket> packets =
|
| buffered_packets_.DeliverPacketsForNextConnection(&connection_id);
|
| if (packets.empty()) {
|
| return;
|
| @@ -1005,7 +1005,7 @@ const QuicVersionVector& QuicDispatcher::GetSupportedVersions() {
|
| }
|
|
|
| void QuicDispatcher::DeliverPacketsToSession(
|
| - const list<BufferedPacket>& packets,
|
| + const std::list<BufferedPacket>& packets,
|
| QuicSession* session) {
|
| for (const BufferedPacket& packet : packets) {
|
| session->ProcessUdpPacket(packet.server_address, packet.client_address,
|
|
|