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

Unified Diff: net/spdy/spdy_protocol.cc

Issue 1461273003: Remove already obsolete CREDENTIAL frame from SPDY code. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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_session.h » ('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 9eaf468a0e7fa97ffaa835e84f5f425495483703..3d16336b74ba3fdda092e501d288df087704365c 100644
--- a/net/spdy/spdy_protocol.cc
+++ b/net/spdy/spdy_protocol.cc
@@ -399,8 +399,6 @@ SpdyRstStreamStatus SpdyConstants::ParseRstStreamStatus(
return RST_STREAM_STREAM_IN_USE;
case 9:
return RST_STREAM_STREAM_ALREADY_CLOSED;
- case 10:
- return RST_STREAM_INVALID_CREDENTIALS;
case 11:
return RST_STREAM_FRAME_TOO_LARGE;
}
@@ -462,8 +460,6 @@ int SpdyConstants::SerializeRstStreamStatus(
return 8;
case RST_STREAM_STREAM_ALREADY_CLOSED:
return 9;
- case RST_STREAM_INVALID_CREDENTIALS:
- return 10;
case RST_STREAM_FRAME_TOO_LARGE:
return 11;
default:
« no previous file with comments | « net/spdy/spdy_protocol.h ('k') | net/spdy/spdy_session.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698