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

Unified Diff: net/quic/quic_spdy_stream_test.cc

Issue 1961573002: Avoids the "re-encode HPACK as SPDY3" step. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Avoids the "re-encode HPACK as SPDY3" step. Created 4 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/quic/quic_spdy_stream_test.cc
diff --git a/net/quic/quic_spdy_stream_test.cc b/net/quic/quic_spdy_stream_test.cc
index a2ededb5df9a286ce777fc9e1016e3b915735af5..16031bfe75d4eb9d195507ad4a511ed4f4f066a6 100644
--- a/net/quic/quic_spdy_stream_test.cc
+++ b/net/quic/quic_spdy_stream_test.cc
@@ -847,6 +847,7 @@ TEST_P(QuicSpdyStreamTest, ReceivingTrailersWithOffset) {
EXPECT_EQ(trailers, decompressed_trailers);
// Consuming the trailers erases them from the stream.
stream_->MarkTrailersConsumed(decompressed_trailers.size());
+ stream_->MarkTrailersDelivered();
EXPECT_EQ("", stream_->decompressed_trailers());
EXPECT_FALSE(stream_->IsDoneReading());

Powered by Google App Engine
This is Rietveld 408576698