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

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

Issue 2222093002: Add GetDebugState() in SendAlgorithmInterface(). (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@129015386
Patch Set: Created 4 years, 4 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/core/congestion_control/tcp_cubic_sender_base.cc
diff --git a/net/quic/core/congestion_control/tcp_cubic_sender_base.cc b/net/quic/core/congestion_control/tcp_cubic_sender_base.cc
index caa02ebf92130797d2b0d29fcb8980c1a9d79395..9bd013fb9904a4654f32adaa5e73001b89506f37 100644
--- a/net/quic/core/congestion_control/tcp_cubic_sender_base.cc
+++ b/net/quic/core/congestion_control/tcp_cubic_sender_base.cc
@@ -5,6 +5,7 @@
#include "net/quic/core/congestion_control/tcp_cubic_sender_base.h"
#include <algorithm>
+#include <string>
#include "base/metrics/histogram_macros.h"
#include "net/quic/core/congestion_control/prr_sender.h"
@@ -283,4 +284,8 @@ void TcpCubicSenderBase::OnConnectionMigration() {
last_cutback_exited_slowstart_ = false;
}
+std::string TcpCubicSenderBase::GetDebugState() const {
+ return "";
+}
+
} // namespace net
« no previous file with comments | « net/quic/core/congestion_control/tcp_cubic_sender_base.h ('k') | net/quic/core/quic_multipath_sent_packet_manager.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698