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

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

Issue 2100303002: Add OCSPVerifyResult for tracking stapled OCSP responses cross-platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@ocsp-date-check
Patch Set: Remaining nits. Created 4 years, 5 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/parse_ocsp.cc ('k') | net/cert/ocsp_revocation_status.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/internal/parse_ocsp_unittest.cc
diff --git a/net/cert/internal/parse_ocsp_unittest.cc b/net/cert/internal/parse_ocsp_unittest.cc
index 001c2270f6a836e414f7f7018991cd14fafa7594..b5bf1e3244b76e4d12bfecd6cb09d30f11b64851 100644
--- a/net/cert/internal/parse_ocsp_unittest.cc
+++ b/net/cert/internal/parse_ocsp_unittest.cc
@@ -80,11 +80,11 @@ OCSPFailure ParseOCSP(const std::string& file_name) {
return PARSE_OCSP_SINGLE_RESPONSE;
switch (status.status) {
- case OCSPCertStatus::Status::GOOD:
+ case OCSPRevocationStatus::GOOD:
return OCSP_SUCCESS;
- case OCSPCertStatus::Status::REVOKED:
+ case OCSPRevocationStatus::REVOKED:
return OCSP_SUCCESS_REVOKED;
- case OCSPCertStatus::Status::UNKNOWN:
+ case OCSPRevocationStatus::UNKNOWN:
return OCSP_SUCCESS_UNKNOWN;
}
« no previous file with comments | « net/cert/internal/parse_ocsp.cc ('k') | net/cert/ocsp_revocation_status.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698