Index: net/quic/congestion_control/pacing_sender.h |
diff --git a/net/quic/congestion_control/pacing_sender.h b/net/quic/congestion_control/pacing_sender.h |
index b1060acd36f34dbffe2e967a73e662d9d3a986bf..f7c262268880a67c7cfac4d24865d26342ee30c4 100644 |
--- a/net/quic/congestion_control/pacing_sender.h |
+++ b/net/quic/congestion_control/pacing_sender.h |
@@ -55,8 +55,10 @@ class NET_EXPORT_PRIVATE PacingSender : public SendAlgorithmInterface { |
private: |
scoped_ptr<SendAlgorithmInterface> sender_; // Underlying sender. |
QuicTime::Delta alarm_granularity_; |
+ // Send time of the last packet considered delayed. |
+ QuicTime last_delayed_packet_sent_time_; |
QuicTime next_packet_send_time_; // When can the next packet be sent. |
- bool was_last_send_delayed_; // True when the last send was delayed. |
+ mutable bool was_last_send_delayed_; // True when the last send was delayed. |
bool has_valid_rtt_; // True if we have at least one RTT update. |
DISALLOW_COPY_AND_ASSIGN(PacingSender); |