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

Unified Diff: net/quic/reliable_quic_stream.h

Issue 990533002: Land Recent QUIC Changes until 03/06/2015. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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_unacked_packet_map.cc ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « net/quic/quic_unacked_packet_map.cc ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698