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

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

Issue 1776423004: Only MarkTrailersConsumed when actually sending trailers notification (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add internal changes and fix tests Created 4 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/tools/quic/quic_client.cc ('k') | net/tools/quic/quic_spdy_client_stream.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/quic/quic_spdy_client_stream.h
diff --git a/net/tools/quic/quic_spdy_client_stream.h b/net/tools/quic/quic_spdy_client_stream.h
index 7268ff020fa1af8f0e9a7dae190117160b5350f0..dcb8896a997e8ec9387655f31b3efa8456bc4e52 100644
--- a/net/tools/quic/quic_spdy_client_stream.h
+++ b/net/tools/quic/quic_spdy_client_stream.h
@@ -64,9 +64,6 @@ class QuicSpdyClientStream : public QuicSpdyStream {
// Returns whatever headers have been received for this stream.
const SpdyHeaderBlock& headers() { return response_headers_; }
- // Returns whatever trailers have been received for this stream.
- const SpdyHeaderBlock& trailers() { return response_trailers_; }
-
size_t header_bytes_read() const { return header_bytes_read_; }
size_t header_bytes_written() const { return header_bytes_written_; }
@@ -89,9 +86,6 @@ class QuicSpdyClientStream : public QuicSpdyStream {
// The parsed headers received from the server.
SpdyHeaderBlock response_headers_;
- // The parsed trailers received from the server.
- SpdyHeaderBlock response_trailers_;
-
// The parsed content-length, or -1 if none is specified.
int content_length_;
int response_code_;
« no previous file with comments | « net/tools/quic/quic_client.cc ('k') | net/tools/quic/quic_spdy_client_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698