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.
5 #ifndef NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
6 #define NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_
8 #include "net/log/net_log.h"
13 struct CTVerifyResult
;
16 // Creates a dictionary of processed Signed Certificate Timestamps to be
17 // logged in the NetLog.
18 // See the documentation for SIGNED_CERTIFICATE_TIMESTAMPS_CHECKED
19 // in net/log/net_log_event_type_list.h
20 scoped_ptr
<base::Value
> NetLogSignedCertificateTimestampCallback(
21 const ct::CTVerifyResult
* ct_result
,
22 NetLogCaptureMode capture_mode
);
24 // Creates a dictionary of raw Signed Certificate Timestamps to be logged
26 // See the documentation for SIGNED_CERTIFICATE_TIMESTAMPS_RECEIVED
27 // in net/log/net_log_event_type_list.h
28 scoped_ptr
<base::Value
> NetLogRawSignedCertificateTimestampCallback(
29 const std::string
* embedded_scts
,
30 const std::string
* sct_list_from_ocsp
,
31 const std::string
* sct_list_from_tls_extension
,
32 NetLogCaptureMode capture_mode
);
36 #endif // NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_