Chromium Code Reviews| 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_ | |
|
wtc
2013/11/27 16:00:58
The include guard macro's name needs to be updated
Eran M. (Google)
2013/11/27 22:08:50
Done.
| |
| 7 | |
| 8 #include "net/base/net_log.h" | |
|
wtc
2013/11/27 16:00:58
Nit: Add a blank line after this line.
Eran M. (Google)
2013/11/27 22:08:50
Done.
| |
| 9 namespace net { | |
| 10 | |
| 11 namespace ct { | |
| 12 struct CTVerifyResult; | |
| 13 } | |
| 14 | |
| 15 base::Value* NetLogSignedCertificateTimestampCallback( | |
|
wtc
2013/11/27 16:00:58
Nit: should we document these two functions? Or ar
Eran M. (Google)
2013/11/27 22:08:50
Documented them, also referred to the documentatio
| |
| 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 | |
|
wtc
2013/11/27 16:00:58
Nit: Add a blank line before this line.
Eran M. (Google)
2013/11/27 22:08:50
Done.
| |
| 24 | |
| 25 #endif // NET_BASE_CT_SIGNED_CERTIFICATE_TIMESTAMP_LOG_PARAM_H_ | |
|
wtc
2013/11/27 16:00:58
Nit: two spaces before "//", one space after "//".
Eran M. (Google)
2013/11/27 22:08:50
Almost got it right! Done.
| |
| OLD | NEW |