| Index: net/quic/quic_unacked_packet_map.cc
|
| diff --git a/net/quic/quic_unacked_packet_map.cc b/net/quic/quic_unacked_packet_map.cc
|
| index 5f29a2b3c3b9d0434afce257eed1a2a7c30d3c4c..194443bfadcf871068637040fbf229dec68de3a1 100644
|
| --- a/net/quic/quic_unacked_packet_map.cc
|
| +++ b/net/quic/quic_unacked_packet_map.cc
|
| @@ -327,18 +327,6 @@ QuicTime QuicUnackedPacketMap::GetLastPacketSentTime() const {
|
| return QuicTime::Zero();
|
| }
|
|
|
| -QuicTime QuicUnackedPacketMap::GetFirstInFlightPacketSentTime() const {
|
| - UnackedPacketMap::const_iterator it = unacked_packets_.begin();
|
| - while (it != unacked_packets_.end() && !it->in_flight) {
|
| - ++it;
|
| - }
|
| - if (it == unacked_packets_.end()) {
|
| - LOG(DFATAL) << "GetFirstInFlightPacketSentTime requires in flight packets.";
|
| - return QuicTime::Zero();
|
| - }
|
| - return it->sent_time;
|
| -}
|
| -
|
| size_t QuicUnackedPacketMap::GetNumUnackedPacketsDebugOnly() const {
|
| size_t unacked_packet_count = 0;
|
| QuicPacketSequenceNumber sequence_number = least_unacked_;
|
|
|