Update NotifyObserversCertDBChanged call to take no arguments

This commit is contained in:
Kevin Sawicki 2017-05-10 10:05:48 -07:00
parent fb85b26767
commit de38461a3f

View file

@ -38,7 +38,7 @@ BOOL AddToTrustedRootStore(const PCCERT_CONTEXT cert_context,
if (result) { if (result) {
// force Chromium to reload it's database for this certificate // force Chromium to reload it's database for this certificate
auto cert_db = net::CertDatabase::GetInstance(); auto cert_db = net::CertDatabase::GetInstance();
cert_db->NotifyObserversCertDBChanged(cert.get()); cert_db->NotifyObserversCertDBChanged();
} }
CertCloseStore(root_cert_store, CERT_CLOSE_STORE_FORCE_FLAG); CertCloseStore(root_cert_store, CERT_CLOSE_STORE_FORCE_FLAG);