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 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_H_ | 5 #ifndef NET_SOCKET_SSL_CLIENT_SOCKET_H_ |
6 #define NET_SOCKET_SSL_CLIENT_SOCKET_H_ | 6 #define NET_SOCKET_SSL_CLIENT_SOCKET_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "net/base/completion_callback.h" | 10 #include "net/base/completion_callback.h" |
11 #include "net/base/load_flags.h" | 11 #include "net/base/load_flags.h" |
12 #include "net/base/net_errors.h" | 12 #include "net/base/net_errors.h" |
13 #include "net/http/transport_security_state.h" | |
13 #include "net/socket/ssl_socket.h" | 14 #include "net/socket/ssl_socket.h" |
14 #include "net/socket/stream_socket.h" | 15 #include "net/socket/stream_socket.h" |
15 | 16 |
16 namespace net { | 17 namespace net { |
17 | 18 |
18 class CertVerifier; | 19 class CertVerifier; |
19 class ServerBoundCertService; | 20 class ServerBoundCertService; |
20 class SSLCertRequestInfo; | 21 class SSLCertRequestInfo; |
21 class SSLInfo; | 22 class SSLInfo; |
22 class TransportSecurityState; | |
Ryan Sleevi
2013/06/05 22:56:00
This change shouldn't be necessary. It's all forwa
palmer
2013/06/05 23:50:15
Done.
| |
23 | 23 |
24 // This struct groups together several fields which are used by various | 24 // This struct groups together several fields which are used by various |
25 // classes related to SSLClientSocket. | 25 // classes related to SSLClientSocket. |
26 struct SSLClientSocketContext { | 26 struct SSLClientSocketContext { |
27 SSLClientSocketContext() | 27 SSLClientSocketContext() |
28 : cert_verifier(NULL), | 28 : cert_verifier(NULL), |
29 server_bound_cert_service(NULL), | 29 server_bound_cert_service(NULL), |
30 transport_security_state(NULL) {} | 30 transport_security_state(NULL) {} |
31 | 31 |
32 SSLClientSocketContext(CertVerifier* cert_verifier_arg, | 32 SSLClientSocketContext(CertVerifier* cert_verifier_arg, |
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
132 bool was_spdy_negotiated_; | 132 bool was_spdy_negotiated_; |
133 // Protocol that we negotiated with the server. | 133 // Protocol that we negotiated with the server. |
134 NextProto protocol_negotiated_; | 134 NextProto protocol_negotiated_; |
135 // True if a channel ID was sent. | 135 // True if a channel ID was sent. |
136 bool channel_id_sent_; | 136 bool channel_id_sent_; |
137 }; | 137 }; |
138 | 138 |
139 } // namespace net | 139 } // namespace net |
140 | 140 |
141 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_H_ | 141 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_H_ |
OLD | NEW |