Chromium Code Reviews| Index: net/cert/ct_signed_certificate_timestamp_log_param.h |
| diff --git a/net/cert/ct_signed_certificate_timestamp_log_param.h b/net/cert/ct_signed_certificate_timestamp_log_param.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..4b5ef11337831371608c9cf1e5dee8ce74fbd60c |
| --- /dev/null |
| +++ b/net/cert/ct_signed_certificate_timestamp_log_param.h |
| @@ -0,0 +1,35 @@ |
| +// Copyright 2013 The Chromium Authors. All rights reserved. |
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +#ifndef NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_ |
| +#define NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_ |
| + |
| +#include "net/base/net_log.h" |
| + |
| +namespace net { |
| + |
| +namespace ct { |
| +struct CTVerifyResult; |
| +} |
| + |
| +// Returns a dictionary of processed Signed Certificate Timestamps to be |
|
eroman
2013/11/27 22:33:46
[optional] I prefer "Creates" both here and below,
Eran M. (Google)
2013/11/29 11:14:44
Done.
|
| +// logged in the NetLog. |
| +// See the documentation for SIGNED_CERTIFICATE_TIMESTAMPS_CHECKED |
| +// in net/base/net_log_event_type_list.h |
| +base::Value* NetLogSignedCertificateTimestampCallback( |
| + const ct::CTVerifyResult* ct_result, NetLog::LogLevel log_level); |
| + |
| +// Returns a dictionary of raw Signed Certificate Timestamps to be logged |
|
eroman
2013/11/27 22:33:46
same suggestion as above.
Eran M. (Google)
2013/11/29 11:14:44
Same fix as above.
|
| +// in the NetLog. |
| +// See the documentation for SIGNED_CERTIFICATE_TIMESTAMPS_RECEIVED |
| +// in net/base/net_log_event_type_list.h |
| +base::Value* NetLogRawSignedCertificateTimestampCallback( |
| + const std::string* embedded_scts, |
| + const std::string* sct_list_from_ocsp, |
| + const std::string* sct_list_from_tls_extension, |
| + NetLog::LogLevel log_level); |
| + |
| +} // namespace net |
| + |
| +#endif // NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_ |