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

Unified Diff: net/http/http_stream_factory_impl_request.h

Issue 2347163002: s/NPN/ALPN/ (Closed)
Patch Set: Re: #12. 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_controller.cc ('k') | net/http/http_stream_factory_impl_request.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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_;
« no previous file with comments | « net/http/http_stream_factory_impl_job_controller.cc ('k') | net/http/http_stream_factory_impl_request.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698