| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 68 channel_id_service(NULL), | 68 channel_id_service(NULL), |
| 69 transport_security_state(NULL), | 69 transport_security_state(NULL), |
| 70 cert_transparency_verifier(NULL), | 70 cert_transparency_verifier(NULL), |
| 71 proxy_service(NULL), | 71 proxy_service(NULL), |
| 72 ssl_config_service(NULL), | 72 ssl_config_service(NULL), |
| 73 http_auth_handler_factory(NULL), | 73 http_auth_handler_factory(NULL), |
| 74 network_delegate(NULL), | 74 network_delegate(NULL), |
| 75 net_log(NULL), | 75 net_log(NULL), |
| 76 host_mapping_rules(NULL), | 76 host_mapping_rules(NULL), |
| 77 ignore_certificate_errors(false), | 77 ignore_certificate_errors(false), |
| 78 use_stale_while_revalidate(false), | |
| 79 testing_fixed_http_port(0), | 78 testing_fixed_http_port(0), |
| 80 testing_fixed_https_port(0), | 79 testing_fixed_https_port(0), |
| 81 enable_tcp_fast_open_for_ssl(false), | 80 enable_tcp_fast_open_for_ssl(false), |
| 82 enable_spdy_compression(true), | 81 enable_spdy_compression(true), |
| 83 enable_spdy_ping_based_connection_checking(true), | 82 enable_spdy_ping_based_connection_checking(true), |
| 84 spdy_default_protocol(kProtoUnknown), | 83 spdy_default_protocol(kProtoUnknown), |
| 85 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), | 84 spdy_session_max_recv_window_size(kSpdySessionMaxRecvWindowSize), |
| 86 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), | 85 spdy_stream_max_recv_window_size(kSpdyStreamMaxRecvWindowSize), |
| 87 spdy_initial_max_concurrent_streams(0), | 86 spdy_initial_max_concurrent_streams(0), |
| 88 time_func(&base::TimeTicks::Now), | 87 time_func(&base::TimeTicks::Now), |
| (...skipping 232 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 321 case WEBSOCKET_SOCKET_POOL: | 320 case WEBSOCKET_SOCKET_POOL: |
| 322 return websocket_socket_pool_manager_.get(); | 321 return websocket_socket_pool_manager_.get(); |
| 323 default: | 322 default: |
| 324 NOTREACHED(); | 323 NOTREACHED(); |
| 325 break; | 324 break; |
| 326 } | 325 } |
| 327 return NULL; | 326 return NULL; |
| 328 } | 327 } |
| 329 | 328 |
| 330 } // namespace net | 329 } // namespace net |
| OLD | NEW |