OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef NET_BASE_EV_ROOT_CA_METADATA_H_ | 5 #ifndef NET_CERT_EV_ROOT_CA_METADATA_H_ |
6 #define NET_BASE_EV_ROOT_CA_METADATA_H_ | 6 #define NET_CERT_EV_ROOT_CA_METADATA_H_ |
7 | 7 |
8 #include "build/build_config.h" | 8 #include "build/build_config.h" |
9 | 9 |
10 #if defined(USE_NSS) || defined(OS_IOS) | 10 #if defined(USE_NSS) || defined(OS_IOS) |
11 #include <secoidt.h> | 11 #include <secoidt.h> |
12 #endif | 12 #endif |
13 | 13 |
14 #include <map> | 14 #include <map> |
15 #include <set> | 15 #include <set> |
16 #include <string> | 16 #include <string> |
17 #include <vector> | 17 #include <vector> |
18 | 18 |
19 #include "net/base/net_export.h" | 19 #include "net/base/net_export.h" |
20 #include "net/base/x509_certificate.h" | 20 #include "net/cert/x509_certificate.h" |
21 | 21 |
22 namespace base { | 22 namespace base { |
23 template <typename T> | 23 template <typename T> |
24 struct DefaultLazyInstanceTraits; | 24 struct DefaultLazyInstanceTraits; |
25 } // namespace base | 25 } // namespace base |
26 | 26 |
27 namespace net { | 27 namespace net { |
28 | 28 |
29 // A singleton. This class stores the meta data of the root CAs that issue | 29 // A singleton. This class stores the meta data of the root CAs that issue |
30 // extended-validation (EV) certificates. | 30 // extended-validation (EV) certificates. |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 | 79 |
80 // extra_cas_ contains any EV CA metadata that was added at runtime. | 80 // extra_cas_ contains any EV CA metadata that was added at runtime. |
81 ExtraEVCAMap extra_cas_; | 81 ExtraEVCAMap extra_cas_; |
82 #endif | 82 #endif |
83 | 83 |
84 DISALLOW_COPY_AND_ASSIGN(EVRootCAMetadata); | 84 DISALLOW_COPY_AND_ASSIGN(EVRootCAMetadata); |
85 }; | 85 }; |
86 | 86 |
87 } // namespace net | 87 } // namespace net |
88 | 88 |
89 #endif // NET_BASE_EV_ROOT_CA_METADATA_H_ | 89 #endif // NET_CERT_EV_ROOT_CA_METADATA_H_ |
OLD | NEW |