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

Unified Diff: net/cert/multi_log_ct_verifier.h

Issue 2824983002: Rename net::ct::LogEntry to SignedEntryData and clarify the comment. (Closed)
Patch Set: sort forward decls Created 3 years, 8 months 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « net/cert/merkle_tree_leaf_unittest.cc ('k') | net/cert/multi_log_ct_verifier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/multi_log_ct_verifier.h
diff --git a/net/cert/multi_log_ct_verifier.h b/net/cert/multi_log_ct_verifier.h
index d4cb56fc2acf108ccaba240bb25ead75ad60e439..3a69b5e22a3611bbaa59f1a835330cf71a04e8fb 100644
--- a/net/cert/multi_log_ct_verifier.h
+++ b/net/cert/multi_log_ct_verifier.h
@@ -18,7 +18,7 @@
namespace net {
namespace ct {
-struct LogEntry;
+struct SignedEntryData;
} // namespace ct
class CTLogVerifier;
@@ -48,14 +48,14 @@ class NET_EXPORT MultiLogCTVerifier : public CTVerifier {
// placing the verification results in |output_scts|. The SCTs in the list
// come from |origin| (as will be indicated in the origin field of each SCT).
void VerifySCTs(base::StringPiece encoded_sct_list,
- const ct::LogEntry& expected_entry,
+ const ct::SignedEntryData& expected_entry,
ct::SignedCertificateTimestamp::Origin origin,
X509Certificate* cert,
SignedCertificateTimestampAndStatusList* output_scts);
// Verifies a single, parsed SCT against all logs.
bool VerifySingleSCT(scoped_refptr<ct::SignedCertificateTimestamp> sct,
- const ct::LogEntry& expected_entry,
+ const ct::SignedEntryData& expected_entry,
X509Certificate* cert,
SignedCertificateTimestampAndStatusList* output_scts);
« no previous file with comments | « net/cert/merkle_tree_leaf_unittest.cc ('k') | net/cert/multi_log_ct_verifier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698