| Index: net/cert/cert_database.h
|
| diff --git a/net/cert/cert_database.h b/net/cert/cert_database.h
|
| index 7f62964b94dedb2244e1790e2c9d70449040cc55..1f213c883f24940d5283af17313cdea5b2160050 100644
|
| --- a/net/cert/cert_database.h
|
| +++ b/net/cert/cert_database.h
|
| @@ -16,6 +16,8 @@ template <class ObserverType> class ObserverListThreadSafe;
|
|
|
| namespace net {
|
|
|
| +class NSSCertDatabase;
|
| +
|
| // This class provides cross-platform functions to verify and add user
|
| // certificates, and to observe changes to the underlying certificate stores.
|
|
|
| @@ -84,6 +86,13 @@ class NET_EXPORT CertDatabase {
|
| void OnAndroidKeyChainChanged();
|
| #endif
|
|
|
| +#if defined(USE_NSS)
|
| + // Observe NSSCertDatabase events and forward them to observers of
|
| + // CertDatabase. It is assumed that the CertDatabase will outlive the
|
| + // NSSCertDatabase, so we don't need to bother with unregistering. //XXX
|
| + void AddSource(NSSCertDatabase* nss_cert_db);
|
| +#endif
|
| +
|
| private:
|
| friend struct DefaultSingletonTraits<CertDatabase>;
|
|
|
|
|