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

Unified Diff: chrome/browser/chromeos/net/cert_verify_proc_chromeos_unittest.cc

Issue 1081913003: Route OCSP stapling through CertVerifier. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@boringnss
Patch Set: yet another CrOS-only Verify call Created 5 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
Index: chrome/browser/chromeos/net/cert_verify_proc_chromeos_unittest.cc
diff --git a/chrome/browser/chromeos/net/cert_verify_proc_chromeos_unittest.cc b/chrome/browser/chromeos/net/cert_verify_proc_chromeos_unittest.cc
index f7deba81550425c16a13c88cc47ba9b3f5792579..dc6581463ab6f9fc83a46211a726544d318fe370 100644
--- a/chrome/browser/chromeos/net/cert_verify_proc_chromeos_unittest.cc
+++ b/chrome/browser/chromeos/net/cert_verify_proc_chromeos_unittest.cc
@@ -80,12 +80,9 @@ class CertVerifyProcChromeOSTest : public testing::Test {
std::string* root_subject_name) {
int flags = 0;
net::CertVerifyResult verify_result;
- int error = verify_proc->Verify(cert,
- "127.0.0.1",
- flags,
- NULL,
- additional_trust_anchors,
- &verify_result);
+ int error =
+ verify_proc->Verify(cert, "127.0.0.1", std::string(), flags, NULL,
+ additional_trust_anchors, &verify_result);
if (verify_result.verified_cert.get() &&
!verify_result.verified_cert->GetIntermediateCertificates().empty()) {
net::X509Certificate::OSCertHandle root =
« no previous file with comments | « chrome/browser/chromeos/net/cert_verify_proc_chromeos.cc ('k') | chrome/browser/chromeos/policy/policy_cert_verifier.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698