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

Unified Diff: net/tools/flip_server/spdy_interface.cc

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/tools/flip_server/spdy_interface.h ('k') | net/tools/quic/quic_spdy_client_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/tools/flip_server/spdy_interface.cc
diff --git a/net/tools/flip_server/spdy_interface.cc b/net/tools/flip_server/spdy_interface.cc
index c479f24fa2765480443518b720b12454dde7a125..ddd3f5ebba2a206890abbed7bcdead74ba6458bc 100644
--- a/net/tools/flip_server/spdy_interface.cc
+++ b/net/tools/flip_server/spdy_interface.cc
@@ -239,18 +239,6 @@ void SpdySM::OnStreamPadding(SpdyStreamId stream_id, size_t len) {
<< ", [" << len << "])";
}
-SpdyHeadersHandlerInterface* SpdySM::OnHeaderFrameStart(
- SpdyStreamId stream_id) {
- LOG(FATAL) << ACCEPTOR_CLIENT_IDENT
- << "SpdySM::OnHeaderFrameStart() not implemented.";
- return nullptr;
-}
-
-void SpdySM::OnHeaderFrameEnd(SpdyStreamId stream_id, bool end_headers) {
- LOG(FATAL) << ACCEPTOR_CLIENT_IDENT
- << "SpdySM::OnHeaderFrameEnd() not implemented.";
-}
-
void SpdySM::OnSynStream(SpdyStreamId stream_id,
SpdyStreamId associated_stream_id,
SpdyPriority priority,
« no previous file with comments | « net/tools/flip_server/spdy_interface.h ('k') | net/tools/quic/quic_spdy_client_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698