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 <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
10 #include <string> | 10 #include <string> |
11 | 11 |
12 #include "base/gtest_prod_util.h" | 12 #include "base/gtest_prod_util.h" |
13 #include "base/strings/string_piece.h" | 13 #include "base/strings/string_piece.h" |
14 #include "net/base/completion_callback.h" | 14 #include "net/base/completion_callback.h" |
15 #include "net/base/load_flags.h" | 15 #include "net/base/load_flags.h" |
16 #include "net/base/net_errors.h" | 16 #include "net/base/net_errors.h" |
| 17 #include "net/base/net_export.h" |
17 #include "net/socket/ssl_socket.h" | 18 #include "net/socket/ssl_socket.h" |
18 #include "net/socket/stream_socket.h" | 19 #include "net/socket/stream_socket.h" |
19 #include "net/ssl/token_binding.h" | 20 #include "net/ssl/token_binding.h" |
20 | 21 |
21 namespace base { | 22 namespace base { |
22 class FilePath; | 23 class FilePath; |
23 class SequencedTaskRunner; | 24 class SequencedTaskRunner; |
24 } | 25 } |
25 | 26 |
26 namespace crypto { | 27 namespace crypto { |
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
155 | 156 |
156 // True if SCTs were received via a TLS extension. | 157 // True if SCTs were received via a TLS extension. |
157 bool signed_cert_timestamps_received_; | 158 bool signed_cert_timestamps_received_; |
158 // True if a stapled OCSP response was received. | 159 // True if a stapled OCSP response was received. |
159 bool stapled_ocsp_response_received_; | 160 bool stapled_ocsp_response_received_; |
160 }; | 161 }; |
161 | 162 |
162 } // namespace net | 163 } // namespace net |
163 | 164 |
164 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_H_ | 165 #endif // NET_SOCKET_SSL_CLIENT_SOCKET_H_ |
OLD | NEW |