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 ce6af66e0cd7c91467c661bc062b6f4f3362fde9..292afa635fcb63ac6e2427004fab08d0d0c4f991 100644 |
--- a/net/quic/quic_sent_packet_manager.cc |
+++ b/net/quic/quic_sent_packet_manager.cc |
@@ -113,9 +113,8 @@ void QuicSentPacketManager::SetFromConfig(const QuicConfig& config) { |
send_algorithm_.reset( |
SendAlgorithmInterface::Create(clock_, &rtt_stats_, kReno, stats_)); |
} |
- if (config.congestion_feedback() == kPACE || |
- (config.HasReceivedConnectionOptions() && |
- ContainsQuicTag(config.ReceivedConnectionOptions(), kPACE))) { |
+ if (config.HasReceivedConnectionOptions() && |
+ ContainsQuicTag(config.ReceivedConnectionOptions(), kPACE)) { |
MaybeEnablePacing(); |
} |
// TODO(ianswett): Remove the "HasReceivedLossDetection" branch once |