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

Unified Diff: net/spdy/spdy_framer.cc

Issue 139573002: Added a flow control blocked notification message. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Re-uploading, no changes. Created 6 years, 11 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/spdy/spdy_framer.h ('k') | net/spdy/spdy_framer_test.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_framer.cc
diff --git a/net/spdy/spdy_framer.cc b/net/spdy/spdy_framer.cc
index 73af4bdf5b800638e85e6629993a0a17782feab8..53f911da3bc457a21c986e710ca117d2fea7de0b 100644
--- a/net/spdy/spdy_framer.cc
+++ b/net/spdy/spdy_framer.cc
@@ -1882,6 +1882,11 @@ SpdySerializedFrame* SpdyFramer::SerializeSettings(
return builder.take();
}
+SpdyFrame* SpdyFramer::CreateBlocked(SpdyStreamId stream_id) {
+ SpdyBlockedIR blocked_ir(stream_id);
+ return SerializeBlocked(blocked_ir);
+}
+
SpdyFrame* SpdyFramer::SerializeBlocked(const SpdyBlockedIR& blocked) const {
DCHECK_LE(4, protocol_version());
SpdyFrameBuilder builder(GetBlockedSize());
« no previous file with comments | « net/spdy/spdy_framer.h ('k') | net/spdy/spdy_framer_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698