| Index: net/quic/core/quic_connection.cc
|
| diff --git a/net/quic/core/quic_connection.cc b/net/quic/core/quic_connection.cc
|
| index 6ca59553cbb918c70cb4e61fc4ff01f47072c427..26f097d85d69e601776087f45da637b628d479ec 100644
|
| --- a/net/quic/core/quic_connection.cc
|
| +++ b/net/quic/core/quic_connection.cc
|
| @@ -253,7 +253,12 @@ QuicConnection::QuicConnection(QuicConnectionId connection_id,
|
| time_of_last_received_packet_(clock_->ApproximateNow()),
|
| time_of_last_sent_new_packet_(clock_->ApproximateNow()),
|
| last_send_for_timeout_(clock_->ApproximateNow()),
|
| - sent_packet_manager_(perspective, clock_, &stats_, kCubicBytes, kNack),
|
| + sent_packet_manager_(
|
| + perspective,
|
| + clock_,
|
| + &stats_,
|
| + FLAGS_quic_reloadable_flag_quic_default_to_bbr ? kBBR : kCubicBytes,
|
| + kNack),
|
| version_negotiation_state_(START_NEGOTIATION),
|
| perspective_(perspective),
|
| connected_(true),
|
| @@ -2431,4 +2436,9 @@ void QuicConnection::CheckIfApplicationLimited() {
|
| }
|
| }
|
|
|
| +void QuicConnection::SetStreamNotifier(
|
| + StreamNotifierInterface* stream_notifier) {
|
| + sent_packet_manager_.SetStreamNotifier(stream_notifier);
|
| +}
|
| +
|
| } // namespace net
|
|
|