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

Unified Diff: net/quic/core/congestion_control/bbr_sender.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.h ('k') | net/quic/core/congestion_control/bbr_sender_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/bbr_sender.cc
diff --git a/net/quic/core/congestion_control/bbr_sender.cc b/net/quic/core/congestion_control/bbr_sender.cc
index f3042847abd0854f2291982c19c780ff5489e8ad..3145d036f1c2b4b256da68f4ede3958ae5297653 100644
--- a/net/quic/core/congestion_control/bbr_sender.cc
+++ b/net/quic/core/congestion_control/bbr_sender.cc
@@ -64,14 +64,12 @@ BbrSender::DebugState::DebugState(const BbrSender& sender)
BbrSender::DebugState::DebugState(const DebugState& state) = default;
-BbrSender::BbrSender(const QuicClock* clock,
- const RttStats* rtt_stats,
+BbrSender::BbrSender(const RttStats* rtt_stats,
const QuicUnackedPacketMap* unacked_packets,
QuicPacketCount initial_tcp_congestion_window,
QuicPacketCount max_tcp_congestion_window,
QuicRandom* random)
- : clock_(clock),
- rtt_stats_(rtt_stats),
+ : rtt_stats_(rtt_stats),
unacked_packets_(unacked_packets),
random_(random),
mode_(STARTUP),
« no previous file with comments | « net/quic/core/congestion_control/bbr_sender.h ('k') | net/quic/core/congestion_control/bbr_sender_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698