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/log/net_log_util.cc

Issue 2115213002: Disable SPDY/3.1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase on https://crrev.com/2129973002. 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_network_transaction_unittest.cc ('k') | net/spdy/spdy_network_transaction_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
« no previous file with comments | « net/http/http_network_transaction_unittest.cc ('k') | net/spdy/spdy_network_transaction_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698