Index: net/http/http_stream_factory_impl.cc |
diff --git a/net/http/http_stream_factory_impl.cc b/net/http/http_stream_factory_impl.cc |
index 6e794daa47a4a2147f44de2716be7f73c5b944e2..59066c2c96029066ac58bad66b712863886c8978 100644 |
--- a/net/http/http_stream_factory_impl.cc |
+++ b/net/http/http_stream_factory_impl.cc |
@@ -189,7 +189,7 @@ void HttpStreamFactoryImpl::OnNewSpdySessionReady( |
bool direct, |
const SSLConfig& used_ssl_config, |
const ProxyInfo& used_proxy_info, |
- bool was_npn_negotiated, |
+ bool was_alpn_negotiated, |
NextProto negotiated_protocol, |
bool using_spdy, |
const BoundNetLog& net_log) { |
@@ -207,7 +207,7 @@ void HttpStreamFactoryImpl::OnNewSpdySessionReady( |
if (!base::ContainsKey(spdy_session_request_map_, spdy_session_key)) |
break; |
Request* request = *spdy_session_request_map_[spdy_session_key].begin(); |
- request->Complete(was_npn_negotiated, negotiated_protocol, using_spdy); |
+ request->Complete(was_alpn_negotiated, negotiated_protocol, using_spdy); |
if (for_websockets_) { |
// TODO(ricea): Restore this code path when WebSocket over SPDY |
// implementation is ready. |