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

Unified Diff: net/quic/core/quic_spdy_session.cc

Issue 2675593002: Spdy{RstStream,GoAway}Status -> SpdyErrorCode. (Closed)
Patch Set: Merged master, which includes 145087791. Created 3 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/quic/core/quic_headers_stream_test.cc ('k') | net/spdy/bidirectional_stream_spdy_impl_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/core/quic_spdy_session.cc
diff --git a/net/quic/core/quic_spdy_session.cc b/net/quic/core/quic_spdy_session.cc
index 84274e764266b294d65ca1da7c917e4b44793d73..fe5bae69280dd069d41b6df8076a3a317a4e8101 100644
--- a/net/quic/core/quic_spdy_session.cc
+++ b/net/quic/core/quic_spdy_session.cc
@@ -4,6 +4,7 @@
#include "net/quic/core/quic_spdy_session.h"
+#include <algorithm>
#include <cstdint>
#include <string>
#include <utility>
@@ -151,8 +152,7 @@ class QuicSpdySession::SpdyFramerVisitor
CloseConnection("SPDY DATA frame received.");
}
- void OnRstStream(SpdyStreamId stream_id,
- SpdyRstStreamStatus status) override {
+ void OnRstStream(SpdyStreamId stream_id, SpdyErrorCode error_code) override {
CloseConnection("SPDY RST_STREAM frame received.");
}
@@ -210,7 +210,7 @@ class QuicSpdySession::SpdyFramerVisitor
}
void OnGoAway(SpdyStreamId last_accepted_stream_id,
- SpdyGoAwayStatus status) override {
+ SpdyErrorCode error_code) override {
CloseConnection("SPDY GOAWAY frame received.");
}
« no previous file with comments | « net/quic/core/quic_headers_stream_test.cc ('k') | net/spdy/bidirectional_stream_spdy_impl_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698