We started redesigning GpuMemoryBuffer interface to handle multiple buffers [0].
[chromium-blink-merge.git] / net / cert / ct_signed_certificate_timestamp_log_param.h
blob5c4db1919ff1ab56afee0a97e5b0902bea065b60
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"
10 namespace net {
12 namespace ct {
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 base::Value* NetLogSignedCertificateTimestampCallback(
21 const ct::CTVerifyResult* ct_result, NetLog::LogLevel log_level);
23 // Creates a dictionary of raw Signed Certificate Timestamps to be logged
24 // in the NetLog.
25 // See the documentation for SIGNED_CERTIFICATE_TIMESTAMPS_RECEIVED
26 // in net/log/net_log_event_type_list.h
27 base::Value* NetLogRawSignedCertificateTimestampCallback(
28 const std::string* embedded_scts,
29 const std::string* sct_list_from_ocsp,
30 const std::string* sct_list_from_tls_extension,
31 NetLog::LogLevel log_level);
33 } // namespace net
35 #endif // NET_CERT_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_