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

Side by Side Diff: net/spdy/spdy_http_stream.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 unified diff | Download patch
« no previous file with comments | « net/socket/ssl_client_socket_pool_unittest.cc ('k') | net/spdy/spdy_http_stream.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef NET_SPDY_SPDY_HTTP_STREAM_H_ 5 #ifndef NET_SPDY_SPDY_HTTP_STREAM_H_
6 #define NET_SPDY_SPDY_HTTP_STREAM_H_ 6 #define NET_SPDY_SPDY_HTTP_STREAM_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <list> 10 #include <list>
(...skipping 175 matching lines...) Expand 10 before | Expand all | Expand 10 after
186 // Is there a scheduled read callback pending. 186 // Is there a scheduled read callback pending.
187 bool buffered_read_callback_pending_; 187 bool buffered_read_callback_pending_;
188 // Has more data been received from the network during the wait for the 188 // Has more data been received from the network during the wait for the
189 // scheduled read callback. 189 // scheduled read callback.
190 bool more_read_data_pending_; 190 bool more_read_data_pending_;
191 191
192 // Is this spdy stream direct to the origin server (or to a proxy). 192 // Is this spdy stream direct to the origin server (or to a proxy).
193 bool direct_; 193 bool direct_;
194 194
195 SSLInfo ssl_info_; 195 SSLInfo ssl_info_;
196 bool was_npn_negotiated_; 196 bool was_alpn_negotiated_;
197 NextProto negotiated_protocol_; 197 NextProto negotiated_protocol_;
198 198
199 base::WeakPtrFactory<SpdyHttpStream> weak_factory_; 199 base::WeakPtrFactory<SpdyHttpStream> weak_factory_;
200 200
201 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream); 201 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream);
202 }; 202 };
203 203
204 } // namespace net 204 } // namespace net
205 205
206 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_ 206 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_
OLDNEW
« no previous file with comments | « net/socket/ssl_client_socket_pool_unittest.cc ('k') | net/spdy/spdy_http_stream.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698