Index: net/spdy/buffered_spdy_framer.cc |
diff --git a/net/spdy/buffered_spdy_framer.cc b/net/spdy/buffered_spdy_framer.cc |
index eae2b503c313c7aebcb8b49bf0f9759287dbf757..fdd26537973bbe2b41dbb90d3cda5ffa3c5b574c 100644 |
--- a/net/spdy/buffered_spdy_framer.cc |
+++ b/net/spdy/buffered_spdy_framer.cc |
@@ -343,9 +343,7 @@ SpdyFrame* BufferedSpdyFramer::CreateSynReply( |
SpdyFrame* BufferedSpdyFramer::CreateRstStream( |
SpdyStreamId stream_id, |
SpdyRstStreamStatus status) const { |
- // RST_STREAM payloads are not part of any SPDY spec. |
- // SpdyFramer will accept them, but don't create them. |
- SpdyRstStreamIR rst_ir(stream_id, status, ""); |
+ SpdyRstStreamIR rst_ir(stream_id, status); |
return spdy_framer_.SerializeRstStream(rst_ir); |
} |