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

Unified Diff: net/spdy/spdy_protocol.cc

Issue 1402373005: Remove description from HTTP/2 RST_STREAM. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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_protocol.h ('k') | net/spdy/spdy_test_util_common.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_protocol.cc
diff --git a/net/spdy/spdy_protocol.cc b/net/spdy/spdy_protocol.cc
index 46b080f940a47ba5b746d76fa451d36b14699a26..9eaf468a0e7fa97ffaa835e84f5f425495483703 100644
--- a/net/spdy/spdy_protocol.cc
+++ b/net/spdy/spdy_protocol.cc
@@ -776,10 +776,8 @@ void SpdySynReplyIR::Visit(SpdyFrameVisitor* visitor) const {
}
SpdyRstStreamIR::SpdyRstStreamIR(SpdyStreamId stream_id,
- SpdyRstStreamStatus status,
- base::StringPiece description)
- : SpdyFrameWithStreamIdIR(stream_id),
- description_(description) {
+ SpdyRstStreamStatus status)
+ : SpdyFrameWithStreamIdIR(stream_id) {
set_status(status);
}
« no previous file with comments | « net/spdy/spdy_protocol.h ('k') | net/spdy/spdy_test_util_common.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698