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

Unified Diff: net/quic/quic_session.cc

Issue 142373006: Pass the whole QuicRstStreamFrame to OnStreamReset. Preparation for (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 10 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 | « no previous file | net/quic/reliable_quic_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/quic_session.cc
diff --git a/net/quic/quic_session.cc b/net/quic/quic_session.cc
index 9c73fd9be2727f80e637e70892c2fc00cb9b7f27..a7de3fd39321d6c17ca8362fdaed17b9f9c62fa3 100644
--- a/net/quic/quic_session.cc
+++ b/net/quic/quic_session.cc
@@ -241,7 +241,7 @@ void QuicSession::OnRstStream(const QuicRstStreamFrame& frame) {
QUIC_STREAM_RST_BEFORE_HEADERS_DECOMPRESSED);
}
}
- stream->OnStreamReset(frame.error_code);
+ stream->OnStreamReset(frame);
}
void QuicSession::OnGoAway(const QuicGoAwayFrame& frame) {
« no previous file with comments | « no previous file | net/quic/reliable_quic_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698