diff options
Diffstat (limited to 'net/cert/nss_cert_database.cc')
-rw-r--r-- | net/cert/nss_cert_database.cc | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/net/cert/nss_cert_database.cc b/net/cert/nss_cert_database.cc index 8e9c692d..e1b3198 100644 --- a/net/cert/nss_cert_database.cc +++ b/net/cert/nss_cert_database.cc @@ -438,18 +438,20 @@ void NSSCertDatabase::NotifyCertRemovalAndCallBack( } void NSSCertDatabase::NotifyObserversOfCertAdded(const X509Certificate* cert) { - observer_list_->Notify(&Observer::OnCertAdded, make_scoped_refptr(cert)); + observer_list_->Notify(FROM_HERE, &Observer::OnCertAdded, + make_scoped_refptr(cert)); } void NSSCertDatabase::NotifyObserversOfCertRemoved( const X509Certificate* cert) { - observer_list_->Notify(&Observer::OnCertRemoved, make_scoped_refptr(cert)); + observer_list_->Notify(FROM_HERE, &Observer::OnCertRemoved, + make_scoped_refptr(cert)); } void NSSCertDatabase::NotifyObserversOfCACertChanged( const X509Certificate* cert) { - observer_list_->Notify( - &Observer::OnCACertChanged, make_scoped_refptr(cert)); + observer_list_->Notify(FROM_HERE, &Observer::OnCACertChanged, + make_scoped_refptr(cert)); } // static |