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