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

Unified Diff: net/quic/congestion_control/receive_algorithm_interface.h

Issue 862133002: Update from https://crrev.com/312398 (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: Created 5 years, 11 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/congestion_control/receive_algorithm_interface.h
diff --git a/net/quic/congestion_control/receive_algorithm_interface.h b/net/quic/congestion_control/receive_algorithm_interface.h
index cd96b022db2ba5bac249f739f1d26ed564a32a8f..ef4fb60a0780cdf5eb1913c3068a8898f761245e 100644
--- a/net/quic/congestion_control/receive_algorithm_interface.h
+++ b/net/quic/congestion_control/receive_algorithm_interface.h
@@ -17,15 +17,10 @@ namespace net {
class NET_EXPORT_PRIVATE ReceiveAlgorithmInterface {
public:
- static ReceiveAlgorithmInterface* Create(CongestionFeedbackType type);
+ static ReceiveAlgorithmInterface* Create();
virtual ~ReceiveAlgorithmInterface() {}
- // Returns false if no QuicCongestionFeedbackFrame block is needed.
- // Otherwise fills in feedback and return true.
- virtual bool GenerateCongestionFeedback(
- QuicCongestionFeedbackFrame* feedback) = 0;
-
// Should be called for each incoming packet.
// bytes: is the packet size in bytes including IP headers.
// sequence_number: is the unique sequence number from the QUIC packet header.

Powered by Google App Engine
This is Rietveld 408576698