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

Unified Diff: net/http/http_response_info.cc

Issue 2119623002: Add metrics to track HTTP/0.9 usage for main frames and subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: placate clang Created 4 years, 6 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/http/http_response_info.cc
diff --git a/net/http/http_response_info.cc b/net/http/http_response_info.cc
index b0c23e032880bc4afa0222bb70139e304466aa2f..d5e5d2c520b5781d41e3859d4dc3c95e70539565 100644
--- a/net/http/http_response_info.cc
+++ b/net/http/http_response_info.cc
@@ -436,6 +436,8 @@ std::string HttpResponseInfo::ConnectionInfoToString(
return "h2";
case CONNECTION_INFO_QUIC1_SPDY3:
return "quic/1+spdy/3";
+ case CONNECTION_INFO_HTTP0_9:
+ return "http/0.9";
case NUM_OF_CONNECTION_INFOS:
break;
}

Powered by Google App Engine
This is Rietveld 408576698