Searched defs:CertVerifier (Results 1 - 2 of 2) sorted by relevance

/external/chromium/net/base/
H A Dcert_verifier.h36 int error; // The return value of CertVerifier::Verify.
37 CertVerifyResult result; // The output of CertVerifier::Verify.
43 // CertVerifier represents a service for verifying certificates.
45 // CertVerifier can handle multiple requests at a time, so when canceling a
49 // CertVerifier (which will automatically cancel the single request when it
51 class NET_EXPORT CertVerifier : public base::NonThreadSafe, class in namespace:net
57 // CertVerifier must not call base::Time::Now() directly. It must call
66 CertVerifier();
70 explicit CertVerifier(TimeService* time_service);
74 ~CertVerifier();
[all...]
H A Dcert_verifier.cc25 // CertVerifier CertVerifierJob CertVerifierWorker Request
59 // On a cache hit, CertVerifier::Verify() returns synchronously without
70 class DefaultTimeService : public CertVerifier::TimeService {
72 // CertVerifier::TimeService methods:
128 CertVerifier* cert_verifier)
146 // Cancel is called from the origin loop when the CertVerifier is getting
190 // We assume that the origin loop outlives the CertVerifier. If the
191 // CertVerifier is deleted, it will call Cancel on us. If it does so
194 // while the CertVerifier (and therefore the MessageLoop) is still alive.
217 CertVerifier* cons
284 CertVerifier::CertVerifier() function in class:net::CertVerifier
292 CertVerifier::CertVerifier(TimeService* time_service) function in class:net::CertVerifier
[all...]

Completed in 91 milliseconds