OLD | NEW |
(Empty) | |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #ifndef NET_BASE_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_ |
| 6 #define NET_BASE_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_ |
| 7 |
| 8 #include "net/base/net_log.h" |
| 9 namespace net { |
| 10 |
| 11 namespace ct { |
| 12 struct CTVerifyResult; |
| 13 } |
| 14 |
| 15 base::Value* NetLogSignedCertificateTimestampCallback( |
| 16 const ct::CTVerifyResult* ct_result, NetLog::LogLevel log_level); |
| 17 |
| 18 base::Value* NetLogRawSignedCertificateTimestampCallback( |
| 19 const std::string* embedded_scts, |
| 20 const std::string* sct_list_from_ocsp, |
| 21 const std::string* sct_list_from_tls_extension, |
| 22 NetLog::LogLevel log_level); |
| 23 } // namespace net |
| 24 |
| 25 #endif // NET_BASE_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_ |
OLD | NEW |