// Copyright 2013 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef NET_SSL_CLIENT_CERT_STORE_NSS_H_ #define NET_SSL_CLIENT_CERT_STORE_NSS_H_ #include "base/functional/callback.h" #include "base/memory/scoped_refptr.h" #include "base/memory/weak_ptr.h" #include "net/base/net_export.h" #include "net/ssl/client_cert_store.h" CERTCertList; CERTCertificate; namespace crypto { class CryptoModuleBlockingPasswordDelegate; } namespace net { class HostPortPair; class SSLCertRequestInfo; class NET_EXPORT ClientCertStoreNSS : public ClientCertStore { … }; } // namespace net #endif // NET_SSL_CLIENT_CERT_STORE_NSS_H_