| Index: chromeos/cert_loader.cc
|
| diff --git a/chromeos/cert_loader.cc b/chromeos/cert_loader.cc
|
| index 1dc12e72db590a6e6b6d21359520fa081c41ad1d..22efff5ba02f88e456ec9e03abdecd05e373e971 100644
|
| --- a/chromeos/cert_loader.cc
|
| +++ b/chromeos/cert_loader.cc
|
| @@ -174,20 +174,8 @@ void CertLoader::NotifyCertificatesLoaded(bool initial_load) {
|
| OnCertificatesLoaded(*cert_list_, initial_load));
|
| }
|
|
|
| -void CertLoader::OnCACertChanged(const net::X509Certificate* cert) {
|
| - // This is triggered when a CA certificate is modified.
|
| - VLOG(1) << "OnCACertChanged";
|
| - LoadCertificates();
|
| -}
|
| -
|
| -void CertLoader::OnCertAdded(const net::X509Certificate* cert) {
|
| - // This is triggered when a client certificate is added.
|
| - VLOG(1) << "OnCertAdded";
|
| - LoadCertificates();
|
| -}
|
| -
|
| -void CertLoader::OnCertRemoved(const net::X509Certificate* cert) {
|
| - VLOG(1) << "OnCertRemoved";
|
| +void CertLoader::OnCertDBChanged(const net::X509Certificate* cert) {
|
| + VLOG(1) << "OnCertDBChanged";
|
| LoadCertificates();
|
| }
|
|
|
|
|