ocsp_revocation_status.h 541 B

123456789101112131415161718192021
  1. // Copyright 2016 The Chromium Authors. All rights reserved.
  2. // Use of this source code is governed by a BSD-style license that can be
  3. // found in the LICENSE file.
  4. #ifndef NET_CERT_OCSP_REVOCATION_STATUS_H_
  5. #define NET_CERT_OCSP_REVOCATION_STATUS_H_
  6. namespace net {
  7. // This value is histogrammed, so do not re-order or change values, and add
  8. // new values at the end.
  9. enum class OCSPRevocationStatus {
  10. GOOD = 0,
  11. REVOKED = 1,
  12. UNKNOWN = 2,
  13. MAX_VALUE = UNKNOWN
  14. };
  15. } // namespace net
  16. #endif // NET_CERT_OCSP_REVOCATION_STATUS_H_