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

Unified Diff: net/quic/test_tools/mock_quic_spdy_client_stream.h

Issue 1961573002: Avoids the "re-encode HPACK as SPDY3" step. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update new test 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
« no previous file with comments | « net/quic/spdy_utils_test.cc ('k') | net/spdy/buffered_spdy_framer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/test_tools/mock_quic_spdy_client_stream.h
diff --git a/net/quic/test_tools/mock_quic_spdy_client_stream.h b/net/quic/test_tools/mock_quic_spdy_client_stream.h
index d5bd14f15b9ce4f663718640f3bd1034dac2b6e9..7164679eceea0d068ccf5d0ed5cc171fe71bf7da 100644
--- a/net/quic/test_tools/mock_quic_spdy_client_stream.h
+++ b/net/quic/test_tools/mock_quic_spdy_client_stream.h
@@ -21,7 +21,10 @@ class MockQuicSpdyClientStream : public net::QuicSpdyClientStream {
MOCK_METHOD1(OnStreamFrame, void(const QuicStreamFrame& frame));
MOCK_METHOD2(OnInitialHeadersComplete, void(bool fin, size_t frame_len));
- MOCK_METHOD2(OnTrailingHeadersComplete, void(bool fin, size_t frame_len));
+ MOCK_METHOD3(OnTrailingHeadersComplete,
+ void(bool fin,
+ size_t frame_len,
+ const QuicHeaderList& header_list));
MOCK_METHOD1(OnPromiseHeaders, void(base::StringPiece headers_data));
MOCK_METHOD2(OnPromiseHeadersComplete,
void(QuicStreamId promised_stream_id, size_t frame_len));
« no previous file with comments | « net/quic/spdy_utils_test.cc ('k') | net/spdy/buffered_spdy_framer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698