| 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;
|
| }
|
|
|
|
|