| Index: net/quic/core/quic_sent_packet_manager.h
|
| diff --git a/net/quic/core/quic_sent_packet_manager.h b/net/quic/core/quic_sent_packet_manager.h
|
| index 61cec03796a6f5eaa4aa17c3ee5692e653045f96..cfc59e6fed68cca868a2362be4e339fbfa22b7d1 100644
|
| --- a/net/quic/core/quic_sent_packet_manager.h
|
| +++ b/net/quic/core/quic_sent_packet_manager.h
|
| @@ -17,7 +17,6 @@
|
| #include "net/base/linked_hash_map.h"
|
| #include "net/quic/core/congestion_control/general_loss_algorithm.h"
|
| #include "net/quic/core/congestion_control/loss_detection_interface.h"
|
| -#include "net/quic/core/congestion_control/pacing_sender.h"
|
| #include "net/quic/core/congestion_control/rtt_stats.h"
|
| #include "net/quic/core/congestion_control/send_algorithm_interface.h"
|
| #include "net/quic/core/quic_protocol.h"
|
| @@ -374,10 +373,6 @@ class NET_EXPORT_PRIVATE QuicSentPacketManager
|
| // If true, send the TLP at 0.5 RTT.
|
| bool enable_half_rtt_tail_loss_probe_;
|
| bool using_pacing_;
|
| - // TODO(jdorfman): Remove |using_pacing_| and rename |using_inline_pacing_| to
|
| - // |using_pacing| when deprecating
|
| - // gfe2_reloadable_flag_quic_use_inline_pacing.
|
| - bool using_inline_pacing_;
|
| // If true, use the new RTO with loss based CWND reduction instead of the send
|
| // algorithms's OnRetransmissionTimeout to reduce the congestion window.
|
| bool use_new_rto_;
|
| @@ -393,8 +388,6 @@ class NET_EXPORT_PRIVATE QuicSentPacketManager
|
| // Largest packet in bytes ever acknowledged.
|
| QuicPacketLength largest_mtu_acked_;
|
|
|
| - PacingSender pacing_sender_;
|
| -
|
| // Set to true after the crypto handshake has successfully completed. After
|
| // this is true we no longer use HANDSHAKE_MODE, and further frames sent on
|
| // the crypto stream (i.e. SCUP messages) are treated like normal
|
|
|