| Index: net/quic/quic_connection.cc
|
| diff --git a/net/quic/quic_connection.cc b/net/quic/quic_connection.cc
|
| index 4970f6684d1e7df0a59245f6756a193d74f1f7c4..e6a3d8ce71f674fc32951ec444ced242856de482 100644
|
| --- a/net/quic/quic_connection.cc
|
| +++ b/net/quic/quic_connection.cc
|
| @@ -324,11 +324,13 @@ void QuicConnection::OnSendConnectionState(
|
| }
|
|
|
| bool QuicConnection::ResumeConnectionState(
|
| - const CachedNetworkParameters& cached_network_params) {
|
| + const CachedNetworkParameters& cached_network_params,
|
| + bool max_bandwidth_resumption) {
|
| if (debug_visitor_ != nullptr) {
|
| debug_visitor_->OnResumeConnectionState(cached_network_params);
|
| }
|
| - return sent_packet_manager_.ResumeConnectionState(cached_network_params);
|
| + return sent_packet_manager_.ResumeConnectionState(cached_network_params,
|
| + max_bandwidth_resumption);
|
| }
|
|
|
| void QuicConnection::SetNumOpenStreams(size_t num_streams) {
|
|
|