OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | |
wtc
2013/11/27 16:32:41
Although it's not required for the build, please a
alcutter
2013/11/27 18:05:55
Done.
| |
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_SCT_STATUS_H_ | |
6 #define NET_CERT_SCT_STATUS_H_ | |
wtc
2013/11/27 16:32:41
The include guard macro should be updated to match
alcutter
2013/11/27 18:05:55
Ay ay, done.
| |
7 | |
8 namespace net { | |
9 | |
10 enum SignedCertificateTimestampVerificationStatus { | |
wtc
2013/11/27 16:32:41
Please document this enum type and its four values
alcutter
2013/11/27 18:05:55
Done.
| |
11 SCT_STATUS_UNSET = 0, | |
wtc
2013/11/27 16:32:41
Nit: it's not clear what "unset" means.
alcutter
2013/11/27 18:05:55
This was a change in response to Eran's comment ea
| |
12 SCT_STATUS_LOG_UNKNOWN = 1, | |
13 SCT_STATUS_INVALID = 2, | |
14 SCT_STATUS_OK = 3, | |
15 }; | |
16 | |
17 } // namespace net | |
18 | |
19 #endif // NET_CERT_SCT_STATUS_H_ | |
OLD | NEW |