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

Unified Diff: net/tools/quic/quic_reliable_client_stream.h

Issue 15074007: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix for windows 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
Index: net/tools/quic/quic_reliable_client_stream.h
diff --git a/net/tools/quic/quic_reliable_client_stream.h b/net/tools/quic/quic_reliable_client_stream.h
index c46420bc173b0c62ad8bdad95c94f2834d6dd82c..10b60c2f69628dcb4103588f5f055089fe1bb59e 100644
--- a/net/tools/quic/quic_reliable_client_stream.h
+++ b/net/tools/quic/quic_reliable_client_stream.h
@@ -49,8 +49,6 @@ class QuicReliableClientStream : public ReliableQuicStream {
// Returns whatever headers have been received for this stream.
const BalsaHeaders& headers() { return headers_; }
- bool closed() { return closed_; }
-
protected:
std::string* mutable_data() { return &data_; }
BalsaHeaders* mutable_headers() { return &headers_; }
@@ -58,7 +56,6 @@ class QuicReliableClientStream : public ReliableQuicStream {
private:
BalsaHeaders headers_;
std::string data_;
- bool closed_;
DISALLOW_COPY_AND_ASSIGN(QuicReliableClientStream);
};
« no previous file with comments | « net/tools/quic/quic_epoll_connection_helper_test.cc ('k') | net/tools/quic/quic_reliable_client_stream_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698