| 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_HTTP_HTTP_NETWORK_SESSION_H_ | 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ | 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <stdint.h> | 9 #include <stdint.h> |
| 10 | 10 |
| (...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 SSLClientAuthCache ssl_client_auth_cache_; | 292 SSLClientAuthCache ssl_client_auth_cache_; |
| 293 std::unique_ptr<ClientSocketPoolManager> normal_socket_pool_manager_; | 293 std::unique_ptr<ClientSocketPoolManager> normal_socket_pool_manager_; |
| 294 std::unique_ptr<ClientSocketPoolManager> websocket_socket_pool_manager_; | 294 std::unique_ptr<ClientSocketPoolManager> websocket_socket_pool_manager_; |
| 295 QuicStreamFactory quic_stream_factory_; | 295 QuicStreamFactory quic_stream_factory_; |
| 296 SpdySessionPool spdy_session_pool_; | 296 SpdySessionPool spdy_session_pool_; |
| 297 std::unique_ptr<HttpStreamFactory> http_stream_factory_; | 297 std::unique_ptr<HttpStreamFactory> http_stream_factory_; |
| 298 std::unique_ptr<HttpStreamFactory> http_stream_factory_for_websocket_; | 298 std::unique_ptr<HttpStreamFactory> http_stream_factory_for_websocket_; |
| 299 std::set<HttpResponseBodyDrainer*> response_drainers_; | 299 std::set<HttpResponseBodyDrainer*> response_drainers_; |
| 300 | 300 |
| 301 NextProtoVector next_protos_; | 301 NextProtoVector next_protos_; |
| 302 bool enabled_protocols_[NUM_VALID_ALTERNATE_PROTOCOLS]; | |
| 303 | 302 |
| 304 Params params_; | 303 Params params_; |
| 305 | 304 |
| 306 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 305 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 307 }; | 306 }; |
| 308 | 307 |
| 309 } // namespace net | 308 } // namespace net |
| 310 | 309 |
| 311 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 310 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |