diff options
Diffstat (limited to 'chrome/browser/cert_store.h')
-rw-r--r-- | chrome/browser/cert_store.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/browser/cert_store.h b/chrome/browser/cert_store.h index ecfab73..742151a 100644 --- a/chrome/browser/cert_store.h +++ b/chrome/browser/cert_store.h @@ -52,7 +52,8 @@ class CertStore : public NotificationObserver { ~CertStore(); // Remove the specified cert from id_to_cert_ and cert_to_id_. - void RemoveCert(int cert_id); + // NOTE: the caller (RemoveCertsForRenderProcesHost) must hold cert_lock_. + void RemoveCertInternal(int cert_id); // Removes all the certs associated with the specified process from the store. void RemoveCertsForRenderProcesHost(int render_process_host_id); |