| 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_CERT_EV_ROOT_CA_METADATA_H_ | 5 #ifndef NET_CERT_EV_ROOT_CA_METADATA_H_ |
| 6 #define NET_CERT_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_CERTS) || defined(OS_IOS) | 10 #if defined(USE_NSS_CERTS) || 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 "base/macros.h" |
| 19 #include "net/base/net_export.h" | 20 #include "net/base/net_export.h" |
| 20 #include "net/cert/x509_certificate.h" | 21 #include "net/cert/x509_certificate.h" |
| 21 | 22 |
| 22 namespace base { | 23 namespace base { |
| 23 template <typename T> | 24 template <typename T> |
| 24 struct DefaultLazyInstanceTraits; | 25 struct DefaultLazyInstanceTraits; |
| 25 } // namespace base | 26 } // namespace base |
| 26 | 27 |
| 27 namespace net { | 28 namespace net { |
| 28 | 29 |
| (...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 // extra_cas_ contains any EV CA metadata that was added at runtime. | 81 // extra_cas_ contains any EV CA metadata that was added at runtime. |
| 81 ExtraEVCAMap extra_cas_; | 82 ExtraEVCAMap extra_cas_; |
| 82 #endif | 83 #endif |
| 83 | 84 |
| 84 DISALLOW_COPY_AND_ASSIGN(EVRootCAMetadata); | 85 DISALLOW_COPY_AND_ASSIGN(EVRootCAMetadata); |
| 85 }; | 86 }; |
| 86 | 87 |
| 87 } // namespace net | 88 } // namespace net |
| 88 | 89 |
| 89 #endif // NET_CERT_EV_ROOT_CA_METADATA_H_ | 90 #endif // NET_CERT_EV_ROOT_CA_METADATA_H_ |
| OLD | NEW |