| Index: net/cert/ct_log_verifier.cc
|
| diff --git a/net/cert/ct_log_verifier.cc b/net/cert/ct_log_verifier.cc
|
| index a55921a9dc28d961d5e9b0ca97632ab7138737f8..e017e360ca9c9f8dc7e33dacfbcdbf1a919d613f 100644
|
| --- a/net/cert/ct_log_verifier.cc
|
| +++ b/net/cert/ct_log_verifier.cc
|
| @@ -85,7 +85,7 @@ CTLogVerifier::CTLogVerifier(const base::StringPiece& description,
|
| DCHECK(!dns_domain_.empty());
|
| }
|
|
|
| -bool CTLogVerifier::Verify(const ct::LogEntry& entry,
|
| +bool CTLogVerifier::Verify(const ct::SignedEntryData& entry,
|
| const ct::SignedCertificateTimestamp& sct) const {
|
| if (sct.log_id != key_id()) {
|
| DVLOG(1) << "SCT is not signed by this log.";
|
| @@ -96,7 +96,7 @@ bool CTLogVerifier::Verify(const ct::LogEntry& entry,
|
| return false;
|
|
|
| std::string serialized_log_entry;
|
| - if (!ct::EncodeLogEntry(entry, &serialized_log_entry)) {
|
| + if (!ct::EncodeSignedEntry(entry, &serialized_log_entry)) {
|
| DVLOG(1) << "Unable to serialize entry.";
|
| return false;
|
| }
|
|
|