| 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 #include "net/base/ev_root_ca_metadata.h" | 5 #include "net/cert/ev_root_ca_metadata.h" |
| 6 | 6 |
| 7 #if defined(USE_NSS) || defined(OS_IOS) | 7 #if defined(USE_NSS) || defined(OS_IOS) |
| 8 #include <cert.h> | 8 #include <cert.h> |
| 9 #include <pkcs11n.h> | 9 #include <pkcs11n.h> |
| 10 #include <secerr.h> | 10 #include <secerr.h> |
| 11 #include <secoid.h> | 11 #include <secoid.h> |
| 12 #elif defined(OS_WIN) | 12 #elif defined(OS_WIN) |
| 13 #include <stdlib.h> | 13 #include <stdlib.h> |
| 14 #endif | 14 #endif |
| 15 | 15 |
| (...skipping 528 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 544 ev_policy_[metadata.fingerprint].push_back(policy); | 544 ev_policy_[metadata.fingerprint].push_back(policy); |
| 545 policy_oids_.insert(policy); | 545 policy_oids_.insert(policy); |
| 546 } | 546 } |
| 547 } | 547 } |
| 548 #endif | 548 #endif |
| 549 } | 549 } |
| 550 | 550 |
| 551 EVRootCAMetadata::~EVRootCAMetadata() { } | 551 EVRootCAMetadata::~EVRootCAMetadata() { } |
| 552 | 552 |
| 553 } // namespace net | 553 } // namespace net |
| OLD | NEW |