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 #include "net/http/http_network_session.h" | 5 #include "net/http/http_network_session.h" |
6 | 6 |
7 #include <utility> | 7 #include <utility> |
8 | 8 |
9 #include "base/atomic_sequence_num.h" | 9 #include "base/atomic_sequence_num.h" |
10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
11 #include "base/debug/stack_trace.h" | 11 #include "base/debug/stack_trace.h" |
12 #include "base/logging.h" | 12 #include "base/logging.h" |
13 #include "base/memory/memory_coordinator_client_registry.h" | 13 #include "base/memory/memory_coordinator_client_registry.h" |
14 #include "base/memory/ptr_util.h" | 14 #include "base/memory/ptr_util.h" |
15 #include "base/profiler/scoped_tracker.h" | 15 #include "base/profiler/scoped_tracker.h" |
16 #include "base/strings/string_number_conversions.h" | 16 #include "base/strings/string_number_conversions.h" |
17 #include "base/strings/string_util.h" | 17 #include "base/strings/string_util.h" |
18 #include "base/strings/stringprintf.h" | 18 #include "base/strings/stringprintf.h" |
19 #include "base/trace_event/memory_allocator_dump.h" | 19 #include "base/trace_event/memory_allocator_dump.h" |
20 #include "base/trace_event/process_memory_dump.h" | 20 #include "base/trace_event/process_memory_dump.h" |
21 #include "base/values.h" | 21 #include "base/values.h" |
22 #include "net/base/network_throttle_manager_impl.h" | 22 #include "net/base/network_throttle_manager_impl.h" |
23 #include "net/http/http_auth_handler_factory.h" | 23 #include "net/http/http_auth_handler_factory.h" |
24 #include "net/http/http_response_body_drainer.h" | 24 #include "net/http/http_response_body_drainer.h" |
25 #include "net/http/http_stream_factory_impl.h" | 25 #include "net/http/http_stream_factory_impl.h" |
26 #include "net/http/url_security_manager.h" | 26 #include "net/http/url_security_manager.h" |
27 #include "net/proxy/proxy_service.h" | 27 #include "net/proxy/proxy_service.h" |
| 28 #include "net/quic/chromium/quic_crypto_client_stream_factory.h" |
28 #include "net/quic/chromium/quic_stream_factory.h" | 29 #include "net/quic/chromium/quic_stream_factory.h" |
29 #include "net/quic/core/crypto/quic_random.h" | 30 #include "net/quic/core/crypto/quic_random.h" |
30 #include "net/quic/core/quic_crypto_client_stream_factory.h" | |
31 #include "net/quic/core/quic_packets.h" | 31 #include "net/quic/core/quic_packets.h" |
32 #include "net/quic/core/quic_tag.h" | 32 #include "net/quic/core/quic_tag.h" |
33 #include "net/quic/core/quic_utils.h" | 33 #include "net/quic/core/quic_utils.h" |
34 #include "net/quic/platform/impl/quic_chromium_clock.h" | 34 #include "net/quic/platform/impl/quic_chromium_clock.h" |
35 #include "net/socket/client_socket_factory.h" | 35 #include "net/socket/client_socket_factory.h" |
36 #include "net/socket/client_socket_pool_manager_impl.h" | 36 #include "net/socket/client_socket_pool_manager_impl.h" |
37 #include "net/socket/next_proto.h" | 37 #include "net/socket/next_proto.h" |
38 #include "net/socket/ssl_client_socket.h" | 38 #include "net/socket/ssl_client_socket.h" |
39 #include "net/spdy/spdy_session_pool.h" | 39 #include "net/spdy/spdy_session_pool.h" |
40 | 40 |
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 break; | 441 break; |
442 case base::MemoryState::SUSPENDED: | 442 case base::MemoryState::SUSPENDED: |
443 // Note: Not supported at present. Fall through. | 443 // Note: Not supported at present. Fall through. |
444 case base::MemoryState::UNKNOWN: | 444 case base::MemoryState::UNKNOWN: |
445 NOTREACHED(); | 445 NOTREACHED(); |
446 break; | 446 break; |
447 } | 447 } |
448 } | 448 } |
449 | 449 |
450 } // namespace net | 450 } // namespace net |
OLD | NEW |