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

Unified Diff: net/log/net_log_util.cc

Issue 2348453002: Remove NPN from SSLConfig and SSLClientSocket*. (Closed)
Patch Set: Re: #7. Created 4 years, 3 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_stream_factory_impl_job.cc ('k') | net/socket/ssl_client_socket.h » ('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 1bf731a9bbe118d027c00efc5b4d6b620178bd0f..55a98cb7037a20a120466f91f563449faf189d99 100644
--- a/net/log/net_log_util.cc
+++ b/net/log/net_log_util.cc
@@ -447,18 +447,6 @@ NET_EXPORT std::unique_ptr<base::DictionaryValue> GetNetInfo(
status_dict->SetString("alpn_protos", next_protos_string);
}
- NextProtoVector npn_protos;
- http_network_session->GetNpnProtos(&npn_protos);
- if (!npn_protos.empty()) {
- std::string next_protos_string;
- for (NextProto proto : npn_protos) {
- if (!next_protos_string.empty())
- next_protos_string.append(",");
- next_protos_string.append(SSLClientSocket::NextProtoToString(proto));
- }
- status_dict->SetString("npn_protos", next_protos_string);
- }
-
net_info_dict->Set(NetInfoSourceToString(NET_INFO_SPDY_STATUS),
status_dict);
}
« no previous file with comments | « net/http/http_stream_factory_impl_job.cc ('k') | net/socket/ssl_client_socket.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698