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 179 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
190 bool buffered_read_callback_pending_; | 190 bool buffered_read_callback_pending_; |
191 // Has more data been received from the network during the wait for the | 191 // Has more data been received from the network during the wait for the |
192 // scheduled read callback. | 192 // scheduled read callback. |
193 bool more_read_data_pending_; | 193 bool more_read_data_pending_; |
194 | 194 |
195 // Is this spdy stream direct to the origin server (or to a proxy). | 195 // Is this spdy stream direct to the origin server (or to a proxy). |
196 bool direct_; | 196 bool direct_; |
197 | 197 |
198 SSLInfo ssl_info_; | 198 SSLInfo ssl_info_; |
199 bool was_alpn_negotiated_; | 199 bool was_alpn_negotiated_; |
| 200 NextProto negotiated_protocol_; |
200 | 201 |
201 base::WeakPtrFactory<SpdyHttpStream> weak_factory_; | 202 base::WeakPtrFactory<SpdyHttpStream> weak_factory_; |
202 | 203 |
203 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream); | 204 DISALLOW_COPY_AND_ASSIGN(SpdyHttpStream); |
204 }; | 205 }; |
205 | 206 |
206 } // namespace net | 207 } // namespace net |
207 | 208 |
208 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_ | 209 #endif // NET_SPDY_SPDY_HTTP_STREAM_H_ |
OLD | NEW |