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

Unified Diff: net/quic/reliable_quic_stream.h

Issue 14816006: Land Recent QUIC changes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Added missing NET_PRIVATE_EXPORT to QuicWallTime Created 7 years, 7 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_utils.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 2aa66e6afa07d11726a9a19cbcd266aec06e35e5..726cc9cb5b56ef4fc34a7372d861e98196585584 100644
--- a/net/quic/reliable_quic_stream.h
+++ b/net/quic/reliable_quic_stream.h
@@ -126,6 +126,8 @@ class NET_EXPORT_PRIVATE ReliableQuicStream : public
// Close the write side of the socket. Further writes will fail.
void CloseWriteSide();
+ bool fin_buffered() { return fin_buffered_; }
+
QuicSession* session() { return session_; }
// Sends as much of 'data' to the connection as the connection will consume,
@@ -154,7 +156,7 @@ class NET_EXPORT_PRIVATE ReliableQuicStream : public
uint64 stream_bytes_read_;
uint64 stream_bytes_written_;
// True if the headers have been completely decompresssed.
- bool headers_complete_;
+ bool headers_decompressed_;
// ID of the header block sent by the peer, once parsed.
QuicHeaderId headers_id_;
// Buffer into which we write bytes from the headers_id_
« no previous file with comments | « net/quic/quic_utils.cc ('k') | net/quic/reliable_quic_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698