Index: net/http/http_stream_factory_impl_job.h |
diff --git a/net/http/http_stream_factory_impl_job.h b/net/http/http_stream_factory_impl_job.h |
index 822ba075572b928cf017b255feac82de1c66e6cd..65eb46fc4ed80ea985fd940a6598851f4a21afd4 100644 |
--- a/net/http/http_stream_factory_impl_job.h |
+++ b/net/http/http_stream_factory_impl_job.h |
@@ -212,7 +212,7 @@ class HttpStreamFactoryImpl::Job { |
void SetPriority(RequestPriority priority); |
RequestPriority priority() const { return priority_; } |
- bool was_npn_negotiated() const; |
+ bool was_alpn_negotiated() const; |
NextProto negotiated_protocol() const; |
bool using_spdy() const; |
const BoundNetLog& net_log() const { return net_log_; } |
@@ -459,8 +459,8 @@ class HttpStreamFactoryImpl::Job { |
std::unique_ptr<WebSocketHandshakeStreamBase> websocket_stream_; |
std::unique_ptr<BidirectionalStreamImpl> bidirectional_stream_impl_; |
- // True if we negotiated NPN. |
- bool was_npn_negotiated_; |
+ // True if we negotiated ALPN. |
+ bool was_alpn_negotiated_; |
// Protocol negotiated with the server. |
NextProto negotiated_protocol_; |