| Index: net/log/net_log_util.cc
|
| diff --git a/net/log/net_log_util.cc b/net/log/net_log_util.cc
|
| index 478fafc886719201fbd83c0ede0c8b72191b195f..e167e1a65ba800d174cb2d250af0fba783eadcd9 100644
|
| --- a/net/log/net_log_util.cc
|
| +++ b/net/log/net_log_util.cc
|
| @@ -431,12 +431,8 @@ NET_EXPORT std::unique_ptr<base::DictionaryValue> GetNetInfo(
|
| if (info_sources & NET_INFO_SPDY_STATUS) {
|
| base::DictionaryValue* status_dict = new base::DictionaryValue();
|
|
|
| - status_dict->SetBoolean("enable_spdy31",
|
| - http_network_session->params().enable_spdy31 &&
|
| - HttpStreamFactory::spdy_enabled());
|
| status_dict->SetBoolean("enable_http2",
|
| - http_network_session->params().enable_http2 &&
|
| - HttpStreamFactory::spdy_enabled());
|
| + http_network_session->params().enable_http2);
|
|
|
| NextProtoVector alpn_protos;
|
| http_network_session->GetAlpnProtos(&alpn_protos);
|
|
|