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

Unified Diff: net/quic/quic_protocol.h

Issue 424903002: Remove FixRate congestion frame type. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@remove_quic_version_15_71718286
Patch Set: Created 6 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
« no previous file with comments | « net/quic/quic_packet_generator_test.cc ('k') | net/quic/quic_protocol.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_protocol.h
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h
index b57619dab2b33c830bcf68338c43ac36b47717cb..170a40ce9a651be59f9902bc54c6763611e1137d 100644
--- a/net/quic/quic_protocol.h
+++ b/net/quic/quic_protocol.h
@@ -712,7 +712,6 @@ struct NET_EXPORT_PRIVATE QuicAckFrame {
enum CongestionFeedbackType {
kTCP, // Used to mimic TCP.
kInterArrival, // Use additional inter arrival information.
- kFixRate, // Provided for testing.
};
// Defines for all types of congestion control algorithms that can be used in
@@ -722,7 +721,6 @@ enum CongestionFeedbackType {
enum CongestionControlType {
kCubic,
kReno,
- kFixRateCongestionControl, // Provided for testing.
kBBR,
};
@@ -746,11 +744,6 @@ struct NET_EXPORT_PRIVATE CongestionFeedbackMessageInterArrival {
TimeMap received_packet_times;
};
-struct NET_EXPORT_PRIVATE CongestionFeedbackMessageFixRate {
- CongestionFeedbackMessageFixRate();
- QuicBandwidth bitrate;
-};
-
struct NET_EXPORT_PRIVATE QuicCongestionFeedbackFrame {
QuicCongestionFeedbackFrame();
~QuicCongestionFeedbackFrame();
@@ -763,7 +756,6 @@ struct NET_EXPORT_PRIVATE QuicCongestionFeedbackFrame {
// is non-trivial, C++ prohibits it.
CongestionFeedbackMessageTCP tcp;
CongestionFeedbackMessageInterArrival inter_arrival;
- CongestionFeedbackMessageFixRate fix_rate;
};
struct NET_EXPORT_PRIVATE QuicRstStreamFrame {
« no previous file with comments | « net/quic/quic_packet_generator_test.cc ('k') | net/quic/quic_protocol.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698