diff -r 000000000000 -r 6474c204b198 security/manager/ssl/src/SharedCertVerifier.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/security/manager/ssl/src/SharedCertVerifier.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,41 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +#ifndef mozilla_psm__SharedCertVerifier_h +#define mozilla_psm__SharedCertVerifier_h + +#include "certt.h" +#include "CertVerifier.h" +#include "mozilla/RefPtr.h" + +namespace mozilla { namespace psm { + +class SharedCertVerifier : public mozilla::psm::CertVerifier +{ +protected: + ~SharedCertVerifier(); + +public: + NS_INLINE_DECL_THREADSAFE_REFCOUNTING(SharedCertVerifier) + + SharedCertVerifier(implementation_config ic, +#ifndef NSS_NO_LIBPKIX + missing_cert_download_config ac, crl_download_config cdc, +#endif + ocsp_download_config odc, ocsp_strict_config osc, + ocsp_get_config ogc, + pinning_enforcement_config pinningEnforcementLevel) + : mozilla::psm::CertVerifier(ic, +#ifndef NSS_NO_LIBPKIX + ac, cdc, +#endif + odc, osc, ogc, + pinningEnforcementLevel) + { + } +}; + +} } // namespace mozilla::psm + +#endif // mozilla_psm__SharedCertVerifier_h