Index: net/http/http_response_info.cc |
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc |
index b5b94c48e2dfdc47242f948a3316bc57d03059d9..7626b07a7ded86b4a963ea3036df6801568d7be7 100644 |
--- a/net/http/http_response_info.cc |
+++ b/net/http/http_response_info.cc |
@@ -382,6 +382,8 @@ HttpResponseInfo::ConnectionInfo HttpResponseInfo::ConnectionInfoFromNextProto( |
return CONNECTION_INFO_HTTP2_14; |
case kProtoSPDY4_15: |
return CONNECTION_INFO_HTTP2_15; |
+ case kProtoSPDY4: |
+ return CONNECTION_INFO_HTTP2; |
case kProtoQUIC1SPDY3: |
return CONNECTION_INFO_QUIC1_SPDY3; |
@@ -413,6 +415,8 @@ std::string HttpResponseInfo::ConnectionInfoToString( |
case CONNECTION_INFO_HTTP2_15: |
// This is the HTTP/2 draft-15 identifier. |
return "h2-15"; |
+ case CONNECTION_INFO_HTTP2: |
+ return "h2"; |
case CONNECTION_INFO_QUIC1_SPDY3: |
return "quic/1+spdy/3"; |
case NUM_OF_CONNECTION_INFOS: |