Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(662)

Side by Side Diff: net/cert/ct_signed_certificate_timestamp_log_param.h

Issue 86503002: Certificate Transparency: Logging SCTs to the NetLog. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Addressing review comments Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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.
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698