Index: net/quic/reliable_quic_stream.h |
diff --git a/net/quic/reliable_quic_stream.h b/net/quic/reliable_quic_stream.h |
index 5757d8dd47e3c0cd2ba2b98d39c4449263c8ecf6..3139ae70ea89b7aa5b0530a7fb2868ef0515e752 100644 |
--- a/net/quic/reliable_quic_stream.h |
+++ b/net/quic/reliable_quic_stream.h |
@@ -85,8 +85,6 @@ class NET_EXPORT_PRIVATE ReliableQuicStream { |
uint64 stream_bytes_read() const { return stream_bytes_read_; } |
uint64 stream_bytes_written() const { return stream_bytes_written_; } |
- QuicVersion version() const; |
- |
void set_fin_sent(bool fin_sent) { fin_sent_ = fin_sent; } |
void set_rst_sent(bool rst_sent) { rst_sent_ = rst_sent; } |
@@ -96,6 +94,7 @@ class NET_EXPORT_PRIVATE ReliableQuicStream { |
// Adjust our flow control windows according to new offset in |frame|. |
virtual void OnWindowUpdateFrame(const QuicWindowUpdateFrame& frame); |
+ // Used in Chrome. |
int num_frames_received() const; |
int num_early_frames_received() const; |
int num_duplicate_frames_received() const; |
@@ -116,10 +115,6 @@ class NET_EXPORT_PRIVATE ReliableQuicStream { |
// it was blocked before. |
void UpdateSendWindowOffset(QuicStreamOffset new_offset); |
- // Returns true if the stream is flow control blocked, by the stream flow |
- // control window or the connection flow control window. |
- bool IsFlowControlBlocked(); |
- |
// Returns true if we have received either a RST or a FIN - either of which |
// gives a definitive number of bytes which the peer has sent. If this is not |
// true on stream termination the session must keep track of the stream's byte |