Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(384)

Unified Diff: net/quic/congestion_control/quic_congestion_control_test.cc

Issue 15937012: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small bug fixes Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/quic/congestion_control/quic_congestion_control_test.cc
diff --git a/net/quic/congestion_control/quic_congestion_control_test.cc b/net/quic/congestion_control/quic_congestion_control_test.cc
index 0a581d0586e7f1b903203225e80a8aa45d285d08..53e2db8a5e75c77f830a32dcf1b465eb3a3efcbf 100644
--- a/net/quic/congestion_control/quic_congestion_control_test.cc
+++ b/net/quic/congestion_control/quic_congestion_control_test.cc
@@ -22,7 +22,6 @@ class QuicCongestionManagerPeer : public QuicCongestionManager {
CongestionFeedbackType congestion_type)
: QuicCongestionManager(clock, congestion_type) {
}
- using QuicCongestionManager::SentBandwidth;
using QuicCongestionManager::BandwidthEstimate;
};
@@ -48,7 +47,6 @@ TEST_F(QuicCongestionControlTest, FixedRateSenderAPI) {
congestion_feedback.fix_rate.bitrate = QuicBandwidth::FromKBytesPerSecond(30);
manager_->OnIncomingQuicCongestionFeedbackFrame(congestion_feedback,
clock_.Now());
- EXPECT_TRUE(manager_->SentBandwidth(clock_.Now()).IsZero());
EXPECT_TRUE(manager_->TimeUntilSend(
clock_.Now(), NOT_RETRANSMISSION, HAS_RETRANSMITTABLE_DATA).IsZero());
manager_->SentPacket(1, clock_.Now(), kMaxPacketSize, NOT_RETRANSMISSION);

Powered by Google App Engine
This is Rietveld 408576698