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

Unified Diff: net/quic/quic_sent_packet_manager.cc

Issue 2183493002: Add a merely pass-through QuicMultipathSentPacketManager. Protected behind blocked flag FLAGS_quic_… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/quic_sent_packet_manager.cc
diff --git a/net/quic/quic_sent_packet_manager.cc b/net/quic/quic_sent_packet_manager.cc
index 7a26504c34bbe0a0ee0d15b49b8aee534260a1b1..1f86a07958641a7b74abeb22b5c9eddc9c36bd55 100644
--- a/net/quic/quic_sent_packet_manager.cc
+++ b/net/quic/quic_sent_packet_manager.cc
@@ -897,9 +897,9 @@ QuicBandwidth QuicSentPacketManager::BandwidthEstimate() const {
return send_algorithm_->BandwidthEstimate();
}
-const QuicSustainedBandwidthRecorder&
+const QuicSustainedBandwidthRecorder*
QuicSentPacketManager::SustainedBandwidthRecorder() const {
- return sustained_bandwidth_recorder_;
+ return &sustained_bandwidth_recorder_;
}
QuicPacketCount QuicSentPacketManager::EstimateMaxPacketsInFlight(

Powered by Google App Engine
This is Rietveld 408576698