Index: net/cert/nss_cert_database.h |
diff --git a/net/cert/nss_cert_database.h b/net/cert/nss_cert_database.h |
index 120e50da9bec7b214c731c8e53d101ce165f8210..c4e89f5aa4d03d70e2a834db78a4760550158c4e 100644 |
--- a/net/cert/nss_cert_database.h |
+++ b/net/cert/nss_cert_database.h |
@@ -20,7 +20,6 @@ |
#include "net/cert/x509_certificate.h" |
namespace base { |
-template <typename T> struct DefaultLazyInstanceTraits; |
class TaskRunner; |
} |
template <class ObserverType> class ObserverListThreadSafe; |
@@ -35,7 +34,6 @@ typedef std::vector<scoped_refptr<CryptoModule> > CryptoModuleList; |
// singleton. |
class NET_EXPORT NSSCertDatabase { |
public: |
- |
class NET_EXPORT Observer { |
public: |
virtual ~Observer() {} |
@@ -102,8 +100,10 @@ class NET_EXPORT NSSCertDatabase { |
typedef base::Callback<void(bool)> DeleteCertCallback; |
- // DEPRECATED: See http://crbug.com/329735. |
- static NSSCertDatabase* GetInstance(); |
+ // Only exposed publicly for use in tests. Otherwise use the getter from |
+ // nss_context.h. |
Ryan Sleevi
2014/07/22 08:31:58
This comment isn't accurate though, is it? It's no
pneubeck (no reviews)
2014/07/22 09:51:50
Yes, I realized too late this might be misleading.
|
+ explicit NSSCertDatabase(crypto::ScopedPK11Slot persistent_slot); |
+ virtual ~NSSCertDatabase(); |
// Get a list of unique certificates in the certificate database (one |
// instance of all certificates). |
@@ -232,9 +232,6 @@ class NET_EXPORT NSSCertDatabase { |
const scoped_refptr<base::TaskRunner>& task_runner); |
protected: |
- NSSCertDatabase(); |
- virtual ~NSSCertDatabase(); |
- |
// Certificate listing implementation used by |ListCerts*| and |
// |ListCertsSync|. Static so it may safely be used on the worker thread. |
// If |slot| is NULL, obtains the certs of all slots, otherwise only of |
@@ -248,8 +245,6 @@ class NET_EXPORT NSSCertDatabase { |
scoped_refptr<base::TaskRunner> GetSlowTaskRunner() const; |
private: |
- friend struct base::DefaultLazyInstanceTraits<NSSCertDatabase>; |
- |
// Registers |observer| to receive notifications of certificate changes. The |
// thread on which this is called is the thread on which |observer| will be |
// called back with notifications. |
@@ -277,6 +272,8 @@ class NET_EXPORT NSSCertDatabase { |
// it may safely be used on the worker thread. |
static bool DeleteCertAndKeyImpl(scoped_refptr<X509Certificate> cert); |
+ crypto::ScopedPK11Slot persistent_slot_; |
+ |
// A helper observer that forwards events from this database to CertDatabase. |
scoped_ptr<Observer> cert_notification_forwarder_; |