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

Unified Diff: net/spdy/spdy_test_util_common.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: Address comments 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
« no previous file with comments | « net/spdy/spdy_session_spdy3_unittest.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/spdy/spdy_test_util_common.cc
diff --git a/net/spdy/spdy_test_util_common.cc b/net/spdy/spdy_test_util_common.cc
index 6fb06dc5f4fed90ac77f9fd3348d2a4f8012952c..32d00f7a5dc1c2fd42cc2cb75912f90859893b1e 100644
--- a/net/spdy/spdy_test_util_common.cc
+++ b/net/spdy/spdy_test_util_common.cc
@@ -517,7 +517,7 @@ NextProto NextProtoFromSpdyVersion(int spdy_version) {
case kSpdyVersion3:
return kProtoSPDY3;
case kSpdyVersion4:
- return kProtoSPDY4a1;
+ return kProtoSPDY4a2;
default:
NOTREACHED();
return kProtoUnknown;
@@ -532,7 +532,7 @@ int SpdyVersionFromNextProto(NextProto next_proto) {
case kProtoSPDY3:
case kProtoSPDY31:
return kSpdyVersion3;
- case kProtoSPDY4a1:
+ case kProtoSPDY4a2:
return kSpdyVersion4;
default:
NOTREACHED();
« no previous file with comments | « net/spdy/spdy_session_spdy3_unittest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698