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

Unified Diff: net/spdy/spdy_framer_decoder_adapter.cc

Issue 2535013002: Add an override to SpdyFramerVisitorAdapter. (Closed)
Patch Set: Created 4 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/spdy/spdy_framer_decoder_adapter.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer_decoder_adapter.cc
diff --git a/net/spdy/spdy_framer_decoder_adapter.cc b/net/spdy/spdy_framer_decoder_adapter.cc
index 4a81839a1c6b0380fe39c22661a13bbde6ed3a48..817eb305d98b2cfb40ff46785c996b444c8859a2 100644
--- a/net/spdy/spdy_framer_decoder_adapter.cc
+++ b/net/spdy/spdy_framer_decoder_adapter.cc
@@ -48,6 +48,13 @@ void SpdyFramerVisitorAdapter::OnError(SpdyFramer* framer) {
visitor_->OnError(framer_);
}
+void SpdyFramerVisitorAdapter::OnCommonHeader(SpdyStreamId stream_id,
+ size_t length,
+ uint8_t type,
+ uint8_t flags) {
+ visitor_->OnCommonHeader(stream_id, length, type, flags);
+}
+
void SpdyFramerVisitorAdapter::OnDataFrameHeader(SpdyStreamId stream_id,
size_t length,
bool fin) {
« no previous file with comments | « net/spdy/spdy_framer_decoder_adapter.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698