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_SSL_SSL_INFO_H_ | 5 #ifndef NET_SSL_SSL_INFO_H_ |
6 #define NET_SSL_SSL_INFO_H_ | 6 #define NET_SSL_SSL_INFO_H_ |
7 | 7 |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
12 #include "net/cert/cert_status_flags.h" | 12 #include "net/cert/cert_status_flags.h" |
13 #include "net/cert/sct_status_flags.h" | 13 #include "net/cert/sct_status_flags.h" |
14 #include "net/cert/x509_cert_types.h" | 14 #include "net/cert/x509_cert_types.h" |
15 #include "net/ssl/signed_certificate_timestamp_and_status.h" | 15 #include "net/ssl/signed_certificate_timestamp_and_status.h" |
16 | 16 |
17 class Pickle; | |
18 class PickleIterator; | |
19 | |
20 namespace net { | 17 namespace net { |
21 | 18 |
22 class X509Certificate; | 19 class X509Certificate; |
23 | 20 |
24 // SSL connection info. | 21 // SSL connection info. |
25 // This is really a struct. All members are public. | 22 // This is really a struct. All members are public. |
26 class NET_EXPORT SSLInfo { | 23 class NET_EXPORT SSLInfo { |
27 public: | 24 public: |
28 // HandshakeType enumerates the possible resumption cases after an SSL | 25 // HandshakeType enumerates the possible resumption cases after an SSL |
29 // handshake. | 26 // handshake. |
(...skipping 56 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
86 std::string pinning_failure_log; | 83 std::string pinning_failure_log; |
87 | 84 |
88 // List of SignedCertificateTimestamps and their corresponding validation | 85 // List of SignedCertificateTimestamps and their corresponding validation |
89 // status. | 86 // status. |
90 SignedCertificateTimestampAndStatusList signed_certificate_timestamps; | 87 SignedCertificateTimestampAndStatusList signed_certificate_timestamps; |
91 }; | 88 }; |
92 | 89 |
93 } // namespace net | 90 } // namespace net |
94 | 91 |
95 #endif // NET_SSL_SSL_INFO_H_ | 92 #endif // NET_SSL_SSL_INFO_H_ |
OLD | NEW |