| 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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 48 class HttpNetworkSessionPeer; | 48 class HttpNetworkSessionPeer; |
| 49 class HttpProxyClientSocketPool; | 49 class HttpProxyClientSocketPool; |
| 50 class HttpResponseBodyDrainer; | 50 class HttpResponseBodyDrainer; |
| 51 class HttpServerProperties; | 51 class HttpServerProperties; |
| 52 class NetLog; | 52 class NetLog; |
| 53 class NetworkThrottleManager; | 53 class NetworkThrottleManager; |
| 54 class ProxyDelegate; | 54 class ProxyDelegate; |
| 55 class ProxyService; | 55 class ProxyService; |
| 56 class QuicClock; | 56 class QuicClock; |
| 57 class QuicCryptoClientStreamFactory; | 57 class QuicCryptoClientStreamFactory; |
| 58 class QuicServerInfoFactory; | |
| 59 class SocketPerformanceWatcherFactory; | 58 class SocketPerformanceWatcherFactory; |
| 60 class SOCKSClientSocketPool; | 59 class SOCKSClientSocketPool; |
| 61 class SSLClientSocketPool; | 60 class SSLClientSocketPool; |
| 62 class SSLConfigService; | 61 class SSLConfigService; |
| 63 class TransportClientSocketPool; | 62 class TransportClientSocketPool; |
| 64 class TransportSecurityState; | 63 class TransportSecurityState; |
| 65 | 64 |
| 66 // This class holds session objects used by HttpNetworkTransaction objects. | 65 // This class holds session objects used by HttpNetworkTransaction objects. |
| 67 class NET_EXPORT HttpNetworkSession | 66 class NET_EXPORT HttpNetworkSession |
| 68 : NON_EXPORTED_BASE(public base::NonThreadSafe), | 67 : NON_EXPORTED_BASE(public base::NonThreadSafe), |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 315 NextProtoVector next_protos_; | 314 NextProtoVector next_protos_; |
| 316 | 315 |
| 317 Params params_; | 316 Params params_; |
| 318 | 317 |
| 319 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 318 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 320 }; | 319 }; |
| 321 | 320 |
| 322 } // namespace net | 321 } // namespace net |
| 323 | 322 |
| 324 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 323 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |