Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: net/http/http_network_session.cc

Issue 445443002: Initialize HttpNetworkSession::Params member after r287408. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698