| Index: net/quic/quic_flow_controller_test.cc
|
| diff --git a/net/quic/quic_flow_controller_test.cc b/net/quic/quic_flow_controller_test.cc
|
| index fdc236a651b61424d2dceb0f76746515b7aa52f3..275af53e1f1d3f1e31fdceb1bddd94c1bdd04915 100644
|
| --- a/net/quic/quic_flow_controller_test.cc
|
| +++ b/net/quic/quic_flow_controller_test.cc
|
| @@ -167,7 +167,7 @@ TEST_F(QuicFlowControllerTest, ReceivingBytesFastIncreasesFlowWindow) {
|
| connection_.AdvanceTime(QuicTime::Delta::FromMilliseconds(1));
|
|
|
| QuicSentPacketManagerInterface* manager =
|
| - QuicConnectionPeer::GetSentPacketManager(&connection_);
|
| + QuicConnectionPeer::GetSentPacketManager(&connection_, kDefaultPathId);
|
|
|
| RttStats* rtt_stats = const_cast<RttStats*>(manager->GetRttStats());
|
| rtt_stats->UpdateRtt(QuicTime::Delta::FromMilliseconds(kRtt),
|
| @@ -221,7 +221,7 @@ TEST_F(QuicFlowControllerTest, ReceivingBytesFastStatusQuo) {
|
| connection_.AdvanceTime(QuicTime::Delta::FromMilliseconds(1));
|
|
|
| QuicSentPacketManagerInterface* manager =
|
| - QuicConnectionPeer::GetSentPacketManager(&connection_);
|
| + QuicConnectionPeer::GetSentPacketManager(&connection_, kDefaultPathId);
|
|
|
| RttStats* rtt_stats = const_cast<RttStats*>(manager->GetRttStats());
|
| rtt_stats->UpdateRtt(QuicTime::Delta::FromMilliseconds(kRtt),
|
| @@ -275,7 +275,7 @@ TEST_F(QuicFlowControllerTest, ReceivingBytesNormalStableFlowWindow) {
|
| connection_.AdvanceTime(QuicTime::Delta::FromMilliseconds(1));
|
|
|
| QuicSentPacketManagerInterface* manager =
|
| - QuicConnectionPeer::GetSentPacketManager(&connection_);
|
| + QuicConnectionPeer::GetSentPacketManager(&connection_, kDefaultPathId);
|
| RttStats* rtt_stats = const_cast<RttStats*>(manager->GetRttStats());
|
| rtt_stats->UpdateRtt(QuicTime::Delta::FromMilliseconds(kRtt),
|
| QuicTime::Delta::Zero(), QuicTime::Zero());
|
| @@ -331,7 +331,7 @@ TEST_F(QuicFlowControllerTest, ReceivingBytesNormalStatusQuo) {
|
| connection_.AdvanceTime(QuicTime::Delta::FromMilliseconds(1));
|
|
|
| QuicSentPacketManagerInterface* manager =
|
| - QuicConnectionPeer::GetSentPacketManager(&connection_);
|
| + QuicConnectionPeer::GetSentPacketManager(&connection_, kDefaultPathId);
|
| RttStats* rtt_stats = const_cast<RttStats*>(manager->GetRttStats());
|
| rtt_stats->UpdateRtt(QuicTime::Delta::FromMilliseconds(kRtt),
|
| QuicTime::Delta::Zero(), QuicTime::Zero());
|
|
|