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

Unified Diff: net/quic/core/congestion_control/general_loss_algorithm_test.cc

Issue 2515613002: deprecate FLAGS_quic_disable_pre_34 (Closed)
Patch Set: Created 4 years, 1 month 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
« no previous file with comments | « net/quic/chromium/quic_http_stream.cc ('k') | net/quic/core/crypto/crypto_server_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/congestion_control/general_loss_algorithm_test.cc
diff --git a/net/quic/core/congestion_control/general_loss_algorithm_test.cc b/net/quic/core/congestion_control/general_loss_algorithm_test.cc
index 0a0725ef82e16f9a04fdfb3626823f6186100d3f..d0b275af9924382eb220762ee77befb38a946f05 100644
--- a/net/quic/core/congestion_control/general_loss_algorithm_test.cc
+++ b/net/quic/core/congestion_control/general_loss_algorithm_test.cc
@@ -38,7 +38,7 @@ class GeneralLossAlgorithmTest : public ::testing::Test {
frame->stream_id = kHeadersStreamId;
SerializedPacket packet(kDefaultPathId, packet_number,
PACKET_1BYTE_PACKET_NUMBER, nullptr, kDefaultLength,
- 0, false, false);
+ false, false);
packet.retransmittable_frames.push_back(QuicFrame(frame));
unacked_packets_.AddSentPacket(&packet, 0, NOT_RETRANSMISSION, clock_.Now(),
true);
@@ -47,7 +47,7 @@ class GeneralLossAlgorithmTest : public ::testing::Test {
void SendAckPacket(QuicPacketNumber packet_number) {
SerializedPacket packet(kDefaultPathId, packet_number,
PACKET_1BYTE_PACKET_NUMBER, nullptr, kDefaultLength,
- 0, true, false);
+ true, false);
unacked_packets_.AddSentPacket(&packet, 0, NOT_RETRANSMISSION, clock_.Now(),
false);
}
« no previous file with comments | « net/quic/chromium/quic_http_stream.cc ('k') | net/quic/core/crypto/crypto_server_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698