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

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

Issue 1413683005: Add new, unused methods to SpdyFramerVisitorInterface. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile errors of flip_in_mem_edsm_server_unittests target. Created 5 years, 1 month 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/flip_server/spdy_interface_test.cc » ('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 fb5d29075c7b172573489e7a7ca3d0798e3fc0ba..d21b500ae9478fcd291723cf4894d406ff989daf 100644
--- a/net/tools/flip_server/spdy_interface.cc
+++ b/net/tools/flip_server/spdy_interface.cc
@@ -244,6 +244,18 @@ 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/flip_server/spdy_interface_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698