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

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

Issue 27026002: CT: Adding preliminary Certificate Transparency support to Chromium. Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Distinguish between SCTs from unknown logs and unverified ones Created 7 years, 1 month 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 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_ 5 #ifndef NET_HTTP_HTTP_NETWORK_SESSION_H_
6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_ 6 #define NET_HTTP_HTTP_NETWORK_SESSION_H_
7 7
8 #include <set> 8 #include <set>
9 #include <string> 9 #include <string>
10 10
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 public: 55 public:
56 struct NET_EXPORT Params { 56 struct NET_EXPORT Params {
57 Params(); 57 Params();
58 ~Params(); 58 ~Params();
59 59
60 ClientSocketFactory* client_socket_factory; 60 ClientSocketFactory* client_socket_factory;
61 HostResolver* host_resolver; 61 HostResolver* host_resolver;
62 CertVerifier* cert_verifier; 62 CertVerifier* cert_verifier;
63 ServerBoundCertService* server_bound_cert_service; 63 ServerBoundCertService* server_bound_cert_service;
64 TransportSecurityState* transport_security_state; 64 TransportSecurityState* transport_security_state;
65 CTVerifier* cert_transparency_verifier;
65 ProxyService* proxy_service; 66 ProxyService* proxy_service;
66 std::string ssl_session_cache_shard; 67 std::string ssl_session_cache_shard;
67 SSLConfigService* ssl_config_service; 68 SSLConfigService* ssl_config_service;
68 HttpAuthHandlerFactory* http_auth_handler_factory; 69 HttpAuthHandlerFactory* http_auth_handler_factory;
69 NetworkDelegate* network_delegate; 70 NetworkDelegate* network_delegate;
70 base::WeakPtr<HttpServerProperties> http_server_properties; 71 base::WeakPtr<HttpServerProperties> http_server_properties;
71 NetLog* net_log; 72 NetLog* net_log;
72 HostMappingRules* host_mapping_rules; 73 HostMappingRules* host_mapping_rules;
73 bool force_http_pipelining; 74 bool force_http_pipelining;
74 bool ignore_certificate_errors; 75 bool ignore_certificate_errors;
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after
199 scoped_ptr<HttpStreamFactory> http_stream_factory_; 200 scoped_ptr<HttpStreamFactory> http_stream_factory_;
200 scoped_ptr<HttpStreamFactory> websocket_handshake_stream_factory_; 201 scoped_ptr<HttpStreamFactory> websocket_handshake_stream_factory_;
201 std::set<HttpResponseBodyDrainer*> response_drainers_; 202 std::set<HttpResponseBodyDrainer*> response_drainers_;
202 203
203 Params params_; 204 Params params_;
204 }; 205 };
205 206
206 } // namespace net 207 } // namespace net
207 208
208 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_ 209 #endif // NET_HTTP_HTTP_NETWORK_SESSION_H_
OLDNEW
« no previous file with comments | « net/data/ssl/certificates/ct-test-embedded-with-preca-chain.pem ('k') | net/http/http_network_session.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698