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

Unified Diff: net/http/http_response_info.h

Issue 724523002: Support HTTP/2 drafts 14 and 15 simultaneously. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
Index: net/http/http_response_info.h
diff --git a/net/http/http_response_info.h b/net/http/http_response_info.h
index efd76fe7b517e98d9fcca9242a51a4f792d758a4..cf186946677624644d90fbdd8f97ed26228490d7 100644
--- a/net/http/http_response_info.h
+++ b/net/http/http_response_info.h
@@ -37,8 +37,10 @@ class NET_EXPORT HttpResponseInfo {
CONNECTION_INFO_HTTP1 = 1,
CONNECTION_INFO_DEPRECATED_SPDY2 = 2,
CONNECTION_INFO_SPDY3 = 3,
- CONNECTION_INFO_SPDY4 = 4,
+ // CONNECTION_INFO_SPDY4 = 4, // TODO(bnc): This will be HTTP/2.
CONNECTION_INFO_QUIC1_SPDY3 = 5,
+ CONNECTION_INFO_SPDY4_14 = 6, // HTTP/2 draft-14.
Ryan Hamilton 2014/11/12 23:32:54 Should we just name this HTTP2_14 and the other HT
Bence 2014/11/13 02:05:05 Done.
+ CONNECTION_INFO_SPDY4_15 = 7, // HTTP/2 draft-15.
NUM_OF_CONNECTION_INFOS,
};

Powered by Google App Engine
This is Rietveld 408576698