| Index: net/quic/quic_sent_packet_manager.cc
|
| diff --git a/net/quic/quic_sent_packet_manager.cc b/net/quic/quic_sent_packet_manager.cc
|
| index b3d94d74bed4f56a9e75fade7ea9aa9893d91cc1..566210b079f870ff0d2bff6d4344ef8bc337d269 100644
|
| --- a/net/quic/quic_sent_packet_manager.cc
|
| +++ b/net/quic/quic_sent_packet_manager.cc
|
| @@ -6,7 +6,6 @@
|
|
|
| #include <algorithm>
|
|
|
| -#include "base/debug/dump_without_crashing.h"
|
| #include "base/logging.h"
|
| #include "base/stl_util.h"
|
| #include "net/quic/congestion_control/pacing_sender.h"
|
| @@ -655,12 +654,8 @@
|
| MarkForRetransmission(sequence_number, TLP_RETRANSMISSION);
|
| return true;
|
| }
|
| -#if defined(NDEBUG)
|
| - base::debug::DumpWithoutCrashing();
|
| -#else
|
| DLOG(FATAL)
|
| << "No retransmittable packets, so RetransmitOldestPacket failed.";
|
| -#endif
|
| return false;
|
| }
|
|
|
|
|