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

Unified Diff: net/cert/internal/path_builder_verify_certificate_chain_unittest.cc

Issue 2898303005: Wire up certificate policies support in PathBuilder. (Closed)
Patch Set: remove extra space Created 3 years, 7 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/internal/path_builder_unittest.cc ('k') | net/tools/cert_verify_tool/verify_using_path_builder.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/internal/path_builder_verify_certificate_chain_unittest.cc
diff --git a/net/cert/internal/path_builder_verify_certificate_chain_unittest.cc b/net/cert/internal/path_builder_verify_certificate_chain_unittest.cc
index e6dfa424ef5999defc2251526af31e8c4105b78c..eb96066e8fb0bd983b7ced2c29b635650c54b986 100644
--- a/net/cert/internal/path_builder_verify_certificate_chain_unittest.cc
+++ b/net/cert/internal/path_builder_verify_certificate_chain_unittest.cc
@@ -43,9 +43,11 @@ class PathBuilderDelegate {
CertPathBuilder::Result result;
// First cert in the |chain| is the target.
- CertPathBuilder path_builder(test.chain.front(), &trust_store,
- &signature_policy, test.time, test.key_purpose,
- &result);
+ CertPathBuilder path_builder(
+ test.chain.front(), &trust_store, &signature_policy, test.time,
+ test.key_purpose, test.initial_explicit_policy,
+ test.user_initial_policy_set, test.initial_policy_mapping_inhibit,
+ test.initial_any_policy_inhibit, &result);
path_builder.AddCertIssuerSource(&intermediate_cert_issuer_source);
path_builder.Run();
« no previous file with comments | « net/cert/internal/path_builder_unittest.cc ('k') | net/tools/cert_verify_tool/verify_using_path_builder.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698