OLD | NEW |
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 Loading... |
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_ |
OLD | NEW |