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

Unified Diff: net/spdy/spdy_session.cc

Issue 14189003: [SPDY] Incorporate latest framing changes from HTTP2 into SPDY 4 as SPDY 4a2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 7 years, 7 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
Index: net/spdy/spdy_session.cc
diff --git a/net/spdy/spdy_session.cc b/net/spdy/spdy_session.cc
index 515e5147684da232fdab23b726126e39aabc8b63..6669dcc85cf304e682b6d264bf47e0d21428a4bc 100644
--- a/net/spdy/spdy_session.cc
+++ b/net/spdy/spdy_session.cc
@@ -61,7 +61,7 @@ int NPNToSpdyVersion(NextProto next_proto) {
case kProtoSPDY3:
case kProtoSPDY31:
return kSpdyVersion3;
- case kProtoSPDY4a1:
+ case kProtoSPDY4a2:
return kSpdyVersion4;
default:
NOTREACHED();
@@ -432,7 +432,7 @@ Error SpdySession::InitializeWithSocket(
}
DCHECK_GE(protocol, kProtoSPDY2);
- DCHECK_LE(protocol, kProtoSPDY4a1);
+ DCHECK_LE(protocol, kProtoSPDY4a2);
if (protocol >= kProtoSPDY31) {
flow_control_state_ = FLOW_CONTROL_STREAM_AND_SESSION;
session_send_window_size_ = kSpdySessionInitialWindowSize;

Powered by Google App Engine
This is Rietveld 408576698