Index: net/quic/quic_protocol.h |
diff --git a/net/quic/quic_protocol.h b/net/quic/quic_protocol.h |
index d851f1b1e7d0d1ef67deae2162c7e9c6be64fa3c..69b2ab41c00b627a34a62f1e0b2ebc6509cb03c2 100644 |
--- a/net/quic/quic_protocol.h |
+++ b/net/quic/quic_protocol.h |
@@ -979,6 +979,9 @@ class NET_EXPORT_PRIVATE RetransmittableFrames { |
const QuicFrame& AddStreamFrame(QuicStreamFrame* stream_frame); |
// Takes ownership of the frame inside |frame|. |
const QuicFrame& AddNonStreamFrame(const QuicFrame& frame); |
+ // Removes all stream frames associated with |stream_id|. |
+ void RemoveFramesForStream(QuicStreamId stream_id); |
+ |
const QuicFrames& frames() const { return frames_; } |
IsHandshake HasCryptoHandshake() const { |