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

Unified Diff: net/spdy/spdy_framer.cc

Issue 10448083: Fix out of order SYN_STEAM frames. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix willchan's comments Created 8 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/spdy_framer.cc
diff --git a/net/spdy/spdy_framer.cc b/net/spdy/spdy_framer.cc
index 3a2ad732631db0e63b009dfff8b1402ab59417b2..79b21e35144cfb93a0c3569884b8df70bddb76fa 100644
--- a/net/spdy/spdy_framer.cc
+++ b/net/spdy/spdy_framer.cc
@@ -1426,6 +1426,9 @@ SpdyControlFrame* SpdyFramer::CompressControlFrame(
compressed_frames.Increment();
+ if (visitor_)
+ visitor_->OnControlFrameCompressed(frame, *new_frame);
+
return new_frame.release();
}

Powered by Google App Engine
This is Rietveld 408576698