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

Unified Diff: net/quic/core/congestion_control/pacing_sender.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/pacing_sender.cc
diff --git a/net/quic/core/congestion_control/pacing_sender.cc b/net/quic/core/congestion_control/pacing_sender.cc
index 1d6394726e0052167c13cadf890471a30f032db5..a292103f4024711743812ef85f857a7bba0b60af 100644
--- a/net/quic/core/congestion_control/pacing_sender.cc
+++ b/net/quic/core/congestion_control/pacing_sender.cc
@@ -4,6 +4,8 @@
#include "net/quic/core/congestion_control/pacing_sender.h"
+#include <string>
+
#include "net/quic/core/quic_flags.h"
using std::min;
@@ -208,4 +210,8 @@ CongestionControlType PacingSender::GetCongestionControlType() const {
return sender_->GetCongestionControlType();
}
+std::string PacingSender::GetDebugState() const {
+ return sender_->GetDebugState();
+}
+
} // namespace net
« no previous file with comments | « net/quic/core/congestion_control/pacing_sender.h ('k') | net/quic/core/congestion_control/send_algorithm_interface.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698