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

Unified Diff: net/spdy/buffered_spdy_framer.cc

Issue 2031373002: Process HTTP/2 ALTSVC frames. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Clear up my confusion with zero streams and empty origins. Created 4 years, 6 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/spdy/buffered_spdy_framer.cc
diff --git a/net/spdy/buffered_spdy_framer.cc b/net/spdy/buffered_spdy_framer.cc
index e8ef21206a03d9634f710a14d5b972c6362dba2c..a7216895dd429a79f99ed99bf90a43c10f7c7d42 100644
--- a/net/spdy/buffered_spdy_framer.cc
+++ b/net/spdy/buffered_spdy_framer.cc
@@ -326,6 +326,13 @@ void BufferedSpdyFramer::OnPushPromise(SpdyStreamId stream_id,
InitHeaderStreaming(stream_id);
}
+void BufferedSpdyFramer::OnAltSvc(
+ SpdyStreamId stream_id,
+ base::StringPiece origin,
+ const SpdyAltSvcWireFormat::AlternativeServiceVector& altsvc_vector) {
+ visitor_->OnAltSvc(stream_id, origin, altsvc_vector);
+}
+
void BufferedSpdyFramer::OnContinuation(SpdyStreamId stream_id, bool end) {
}

Powered by Google App Engine
This is Rietveld 408576698