| Index: net/cert/internal/path_builder.cc
|
| diff --git a/net/cert/internal/path_builder.cc b/net/cert/internal/path_builder.cc
|
| index 10b507bc594c3849d63aa2af78c35ad8a1c5d08a..fad4a70e63fcbcc93f332edd13784803dedf05aa 100644
|
| --- a/net/cert/internal/path_builder.cc
|
| +++ b/net/cert/internal/path_builder.cc
|
| @@ -635,10 +635,12 @@ CompletionStatus CertPathBuilder::DoGetNextPathComplete() {
|
| return CompletionStatus::SYNC;
|
| }
|
|
|
| + // TODO(crbug.com/634443): Expose CertErrors on ResultPath.
|
| + CertErrors errors;
|
| bool verify_result =
|
| next_path_.trust_anchor.get() &&
|
| VerifyCertificateChain(next_path_.certs, next_path_.trust_anchor.get(),
|
| - signature_policy_, time_);
|
| + signature_policy_, time_, &errors);
|
| DVLOG(1) << "CertPathBuilder VerifyCertificateChain result = "
|
| << verify_result;
|
| AddResultPath(next_path_, verify_result);
|
|
|