Index: net/log/net_log_util.cc |
diff --git a/net/log/net_log_util.cc b/net/log/net_log_util.cc |
index 17d97c2fca30bbe201bff39a3677182cc6e57271..713e62aea3de97a116dd737d66017f4cdd793a54 100644 |
--- a/net/log/net_log_util.cc |
+++ b/net/log/net_log_util.cc |
@@ -431,12 +431,12 @@ NET_EXPORT scoped_ptr<base::DictionaryValue> GetNetInfo( |
http_network_session->SocketPoolInfoToValue()); |
} |
- if (info_sources & NET_INFO_SPDY_SESSIONS) { |
- net_info_dict->Set(NetInfoSourceToString(NET_INFO_SPDY_SESSIONS), |
+ if (info_sources & NET_INFO_HTTP2_SESSIONS) { |
+ net_info_dict->Set(NetInfoSourceToString(NET_INFO_HTTP2_SESSIONS), |
http_network_session->SpdySessionPoolInfoToValue()); |
} |
- if (info_sources & NET_INFO_SPDY_STATUS) { |
+ if (info_sources & NET_INFO_HTTP2_STATUS) { |
base::DictionaryValue* status_dict = new base::DictionaryValue(); |
status_dict->SetBoolean("spdy_enabled", |
@@ -457,15 +457,15 @@ NET_EXPORT scoped_ptr<base::DictionaryValue> GetNetInfo( |
status_dict->SetString("next_protos", next_protos_string); |
} |
- net_info_dict->Set(NetInfoSourceToString(NET_INFO_SPDY_STATUS), |
+ net_info_dict->Set(NetInfoSourceToString(NET_INFO_HTTP2_STATUS), |
status_dict); |
} |
- if (info_sources & NET_INFO_SPDY_ALT_PROTO_MAPPINGS) { |
+ if (info_sources & NET_INFO_HTTP2_ALT_SVC_MAPPINGS) { |
const net::HttpServerProperties& http_server_properties = |
*context->http_server_properties(); |
net_info_dict->Set( |
- NetInfoSourceToString(NET_INFO_SPDY_ALT_PROTO_MAPPINGS), |
+ NetInfoSourceToString(NET_INFO_HTTP2_ALT_SVC_MAPPINGS), |
http_server_properties.GetAlternativeServiceInfoAsValue()); |
} |