| 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 10 matching lines...) Expand all Loading... |
| 21 #include "base/memory/ref_counted.h" | 21 #include "base/memory/ref_counted.h" |
| 22 #include "base/memory/weak_ptr.h" | 22 #include "base/memory/weak_ptr.h" |
| 23 #include "base/threading/non_thread_safe.h" | 23 #include "base/threading/non_thread_safe.h" |
| 24 #include "net/base/host_port_pair.h" | 24 #include "net/base/host_port_pair.h" |
| 25 #include "net/base/net_export.h" | 25 #include "net/base/net_export.h" |
| 26 #include "net/dns/host_resolver.h" | 26 #include "net/dns/host_resolver.h" |
| 27 #include "net/http/http_auth_cache.h" | 27 #include "net/http/http_auth_cache.h" |
| 28 #include "net/http/http_stream_factory.h" | 28 #include "net/http/http_stream_factory.h" |
| 29 #include "net/quic/chromium/quic_stream_factory.h" | 29 #include "net/quic/chromium/quic_stream_factory.h" |
| 30 #include "net/socket/next_proto.h" | 30 #include "net/socket/next_proto.h" |
| 31 #include "net/spdy/spdy_protocol.h" | 31 #include "net/spdy/chromium/spdy_session_pool.h" |
| 32 #include "net/spdy/spdy_session_pool.h" | 32 #include "net/spdy/core/spdy_protocol.h" |
| 33 #include "net/ssl/ssl_client_auth_cache.h" | 33 #include "net/ssl/ssl_client_auth_cache.h" |
| 34 | 34 |
| 35 namespace base { | 35 namespace base { |
| 36 class Value; | 36 class Value; |
| 37 namespace trace_event { | 37 namespace trace_event { |
| 38 class ProcessMemoryDump; | 38 class ProcessMemoryDump; |
| 39 } | 39 } |
| 40 } | 40 } |
| 41 | 41 |
| 42 namespace net { | 42 namespace net { |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 NextProtoVector next_protos_; | 326 NextProtoVector next_protos_; |
| 327 | 327 |
| 328 Params params_; | 328 Params params_; |
| 329 | 329 |
| 330 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; | 330 std::unique_ptr<base::MemoryPressureListener> memory_pressure_listener_; |
| 331 }; | 331 }; |
| 332 | 332 |
| 333 } // namespace net | 333 } // namespace net |
| 334 | 334 |
| 335 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ | 335 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ |
| OLD | NEW |