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/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "base/debug/stack_trace.h" | 10 #include "base/debug/stack_trace.h" |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 cert_verifier(NULL), | 61 cert_verifier(NULL), |
62 channel_id_service(NULL), | 62 channel_id_service(NULL), |
63 transport_security_state(NULL), | 63 transport_security_state(NULL), |
64 cert_transparency_verifier(NULL), | 64 cert_transparency_verifier(NULL), |
65 proxy_service(NULL), | 65 proxy_service(NULL), |
66 ssl_config_service(NULL), | 66 ssl_config_service(NULL), |
67 http_auth_handler_factory(NULL), | 67 http_auth_handler_factory(NULL), |
68 network_delegate(NULL), | 68 network_delegate(NULL), |
69 net_log(NULL), | 69 net_log(NULL), |
70 host_mapping_rules(NULL), | 70 host_mapping_rules(NULL), |
| 71 enable_ssl_connect_job_waiting(false), |
71 ignore_certificate_errors(false), | 72 ignore_certificate_errors(false), |
72 testing_fixed_http_port(0), | 73 testing_fixed_http_port(0), |
73 testing_fixed_https_port(0), | 74 testing_fixed_https_port(0), |
74 force_spdy_single_domain(false), | 75 force_spdy_single_domain(false), |
75 enable_spdy_compression(true), | 76 enable_spdy_compression(true), |
76 enable_spdy_ping_based_connection_checking(true), | 77 enable_spdy_ping_based_connection_checking(true), |
77 spdy_default_protocol(kProtoUnknown), | 78 spdy_default_protocol(kProtoUnknown), |
78 spdy_stream_initial_recv_window_size(0), | 79 spdy_stream_initial_recv_window_size(0), |
79 spdy_initial_max_concurrent_streams(0), | 80 spdy_initial_max_concurrent_streams(0), |
80 spdy_max_concurrent_streams_limit(0), | 81 spdy_max_concurrent_streams_limit(0), |
(...skipping 220 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
301 case WEBSOCKET_SOCKET_POOL: | 302 case WEBSOCKET_SOCKET_POOL: |
302 return websocket_socket_pool_manager_.get(); | 303 return websocket_socket_pool_manager_.get(); |
303 default: | 304 default: |
304 NOTREACHED(); | 305 NOTREACHED(); |
305 break; | 306 break; |
306 } | 307 } |
307 return NULL; | 308 return NULL; |
308 } | 309 } |
309 | 310 |
310 } // namespace net | 311 } // namespace net |
OLD | NEW |