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

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

Issue 2566333002: relnote: Remove unused QuicClock member of BbrSender. (Closed)
Patch Set: Created 4 years 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/core/congestion_control/bbr_sender_test.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/congestion_control/send_algorithm_interface.cc
diff --git a/net/quic/core/congestion_control/send_algorithm_interface.cc b/net/quic/core/congestion_control/send_algorithm_interface.cc
index bc44de09840be6fb60bd303d7ba484c8a65ad1ae..badfd2b14369e5e551a6b22500d958834a65ce9e 100644
--- a/net/quic/core/congestion_control/send_algorithm_interface.cc
+++ b/net/quic/core/congestion_control/send_algorithm_interface.cc
@@ -28,7 +28,7 @@ SendAlgorithmInterface* SendAlgorithmInterface::Create(
switch (congestion_control_type) {
case kBBR:
if (FLAGS_quic_allow_new_bbr) {
- return new BbrSender(clock, rtt_stats, unacked_packets,
+ return new BbrSender(rtt_stats, unacked_packets,
initial_congestion_window, max_congestion_window,
random);
}
« no previous file with comments | « net/quic/core/congestion_control/bbr_sender_test.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698