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

Unified Diff: net/http/http_response_info.h

Issue 2140253002: Add metrics to track HTTP/0.9 usage for main frames and subresources (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2785
Patch Set: Created 4 years, 5 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/http/http_basic_stream.cc ('k') | net/http/http_response_info.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/http_response_info.h
diff --git a/net/http/http_response_info.h b/net/http/http_response_info.h
index 2dce1a1de07c9577c835cfcb8b2f2ca7bbf3e5c9..a67e4ecd3f16f6b2c1b4dfb4e479070f40596fec 100644
--- a/net/http/http_response_info.h
+++ b/net/http/http_response_info.h
@@ -34,13 +34,15 @@ class NET_EXPORT HttpResponseInfo {
// the cache, please make sure not to delete or reorder values.
enum ConnectionInfo {
CONNECTION_INFO_UNKNOWN = 0,
- CONNECTION_INFO_HTTP1 = 1,
+ CONNECTION_INFO_HTTP1_1 = 1,
CONNECTION_INFO_DEPRECATED_SPDY2 = 2,
CONNECTION_INFO_SPDY3 = 3,
CONNECTION_INFO_HTTP2 = 4, // HTTP/2.
CONNECTION_INFO_QUIC1_SPDY3 = 5,
CONNECTION_INFO_HTTP2_14 = 6, // HTTP/2 draft-14.
CONNECTION_INFO_HTTP2_15 = 7, // HTTP/2 draft-15.
+ CONNECTION_INFO_HTTP0_9 = 8,
+ CONNECTION_INFO_HTTP1_0 = 9,
NUM_OF_CONNECTION_INFOS,
};
« no previous file with comments | « net/http/http_basic_stream.cc ('k') | net/http/http_response_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698