Index: net/http/http_stream_factory_impl_job.cc |
diff --git a/net/http/http_stream_factory_impl_job.cc b/net/http/http_stream_factory_impl_job.cc |
index 82d7ed348ba08d7011bac70449d6f882859b9de2..d621d0b3251ca1f580cfea69a80ef4937d766d6e 100644 |
--- a/net/http/http_stream_factory_impl_job.cc |
+++ b/net/http/http_stream_factory_impl_job.cc |
@@ -920,8 +920,9 @@ int HttpStreamFactoryImpl::Job::DoInitConnectionComplete(int result) { |
if (ssl_socket->WasNpnNegotiated()) { |
was_npn_negotiated_ = true; |
std::string proto; |
+ std::string server_protos; |
SSLClientSocket::NextProtoStatus status = |
- ssl_socket->GetNextProto(&proto); |
+ ssl_socket->GetNextProto(&proto, &server_protos); |
wtc
2014/07/31 23:05:24
IMPORTANT: is this change part of the CL? It is un
mshelley
2014/08/02 23:59:14
Done.
|
NextProto protocol_negotiated = |
SSLClientSocket::NextProtoFromString(proto); |
protocol_negotiated_ = protocol_negotiated; |