| 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 namespace net { | 54 namespace net { |
| 55 | 55 |
| 56 HttpNetworkSession::Params::Params() | 56 HttpNetworkSession::Params::Params() |
| 57 : client_socket_factory(NULL), | 57 : client_socket_factory(NULL), |
| 58 host_resolver(NULL), | 58 host_resolver(NULL), |
| 59 cert_verifier(NULL), | 59 cert_verifier(NULL), |
| 60 server_bound_cert_service(NULL), | 60 server_bound_cert_service(NULL), |
| 61 transport_security_state(NULL), | 61 transport_security_state(NULL), |
| 62 cert_transparency_verifier(NULL), | 62 cert_transparency_verifier(NULL), |
| 63 proxy_service(NULL), | 63 proxy_service(NULL), |
| 64 ssl_host_info_factory(NULL), |
| 64 ssl_config_service(NULL), | 65 ssl_config_service(NULL), |
| 65 http_auth_handler_factory(NULL), | 66 http_auth_handler_factory(NULL), |
| 66 network_delegate(NULL), | 67 network_delegate(NULL), |
| 67 net_log(NULL), | 68 net_log(NULL), |
| 68 host_mapping_rules(NULL), | 69 host_mapping_rules(NULL), |
| 69 force_http_pipelining(false), | 70 force_http_pipelining(false), |
| 70 ignore_certificate_errors(false), | 71 ignore_certificate_errors(false), |
| 71 http_pipelining_enabled(false), | 72 http_pipelining_enabled(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), |
| (...skipping 152 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 226 case WEBSOCKET_SOCKET_POOL: | 227 case WEBSOCKET_SOCKET_POOL: |
| 227 return websocket_socket_pool_manager_.get(); | 228 return websocket_socket_pool_manager_.get(); |
| 228 default: | 229 default: |
| 229 NOTREACHED(); | 230 NOTREACHED(); |
| 230 break; | 231 break; |
| 231 } | 232 } |
| 232 return NULL; | 233 return NULL; |
| 233 } | 234 } |
| 234 | 235 |
| 235 } // namespace net | 236 } // namespace net |
| OLD | NEW |