| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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_CERT_CT_POLICY_ENFORCER_H | 5 #ifndef NET_CERT_CT_POLICY_ENFORCER_H_ |
| 6 #define NET_CERT_CT_POLICY_ENFORCER_H | 6 #define NET_CERT_CT_POLICY_ENFORCER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <stddef.h> |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "net/base/net_export.h" | 11 #include "net/base/net_export.h" |
| 12 #include "net/cert/signed_certificate_timestamp.h" | 12 #include "net/cert/signed_certificate_timestamp.h" |
| 13 | 13 |
| 14 namespace net { | 14 namespace net { |
| 15 | 15 |
| 16 class NetLogWithSource; | 16 class NetLogWithSource; |
| (...skipping 81 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 98 // to be conforming. | 98 // to be conforming. |
| 99 virtual ct::EVPolicyCompliance DoesConformToCTEVPolicy( | 99 virtual ct::EVPolicyCompliance DoesConformToCTEVPolicy( |
| 100 X509Certificate* cert, | 100 X509Certificate* cert, |
| 101 const ct::EVCertsWhitelist* ev_whitelist, | 101 const ct::EVCertsWhitelist* ev_whitelist, |
| 102 const SCTList& verified_scts, | 102 const SCTList& verified_scts, |
| 103 const NetLogWithSource& net_log); | 103 const NetLogWithSource& net_log); |
| 104 }; | 104 }; |
| 105 | 105 |
| 106 } // namespace net | 106 } // namespace net |
| 107 | 107 |
| 108 #endif // NET_CERT_CT_POLICY_ENFORCER_H | 108 #endif // NET_CERT_CT_POLICY_ENFORCER_H_ |
| OLD | NEW |