Index: net/http/http_stream_factory_impl_request.h |
diff --git a/net/http/http_stream_factory_impl_request.h b/net/http/http_stream_factory_impl_request.h |
index 90a7e16100de93b85168ca06116cf8b79751ce0d..80948fd3d2308038d12fb37489f072e53a9f75f8 100644 |
--- a/net/http/http_stream_factory_impl_request.h |
+++ b/net/http/http_stream_factory_impl_request.h |
@@ -70,7 +70,7 @@ class HttpStreamFactoryImpl::Request : public HttpStreamRequest { |
bool HasSpdySessionKey() const; |
// Marks completion of the request. Must be called before OnStreamReady(). |
- void Complete(bool was_npn_negotiated, |
+ void Complete(bool was_alpn_negotiated, |
NextProto negotiated_protocol, |
bool using_spdy); |
@@ -119,7 +119,7 @@ class HttpStreamFactoryImpl::Request : public HttpStreamRequest { |
int RestartTunnelWithProxyAuth(const AuthCredentials& credentials) override; |
void SetPriority(RequestPriority priority) override; |
LoadState GetLoadState() const override; |
- bool was_npn_negotiated() const override; |
+ bool was_alpn_negotiated() const override; |
NextProto negotiated_protocol() const override; |
bool using_spdy() const override; |
const ConnectionAttempts& connection_attempts() const override; |
@@ -142,7 +142,7 @@ class HttpStreamFactoryImpl::Request : public HttpStreamRequest { |
std::unique_ptr<const SpdySessionKey> spdy_session_key_; |
bool completed_; |
- bool was_npn_negotiated_; |
+ bool was_alpn_negotiated_; |
// Protocol negotiated with the server. |
NextProto negotiated_protocol_; |
bool using_spdy_; |