Home | History | Annotate | Download | only in base

Lines Matching refs:TrustEntry

16 // TrustEntry is used to store the original CERTCertificate and CERTCertTrust
19 class TestRootCerts::TrustEntry {
21 // Creates a new TrustEntry by incrementing the reference to |certificate|
23 TrustEntry(CERTCertificate* certificate, CERTCertTrust trust);
24 ~TrustEntry();
37 DISALLOW_COPY_AND_ASSIGN(TrustEntry);
40 TestRootCerts::TrustEntry::TrustEntry(CERTCertificate* certificate,
46 TestRootCerts::TrustEntry::~TrustEntry() {
82 trust_cache_.push_back(new TrustEntry(certificate->os_cert_handle(),
93 for (std::list<TrustEntry*>::reverse_iterator it = trust_cache_.rbegin();