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

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

Issue 135373002: Added SSLHostInfo. Storing of server host info to our standard disk cache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixed wtc's comments Created 6 years, 11 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
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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698