| Index: chrome/browser/cert_store.cc
|
| diff --git a/chrome/browser/cert_store.cc b/chrome/browser/cert_store.cc
|
| index 30ef867dac5ac06bca1ddff06765f9053a69d935..6def04e3fdcb91f21e37fb70b4c28871cee80c82 100644
|
| --- a/chrome/browser/cert_store.cc
|
| +++ b/chrome/browser/cert_store.cc
|
| @@ -46,7 +46,7 @@ CertStore::~CertStore() {
|
|
|
| int CertStore::StoreCert(net::X509Certificate* cert, int process_id) {
|
| DCHECK(cert);
|
| - AutoLock autoLock(cert_lock_);
|
| + base::AutoLock autoLock(cert_lock_);
|
|
|
| int cert_id;
|
|
|
| @@ -86,7 +86,7 @@ int CertStore::StoreCert(net::X509Certificate* cert, int process_id) {
|
|
|
| bool CertStore::RetrieveCert(int cert_id,
|
| scoped_refptr<net::X509Certificate>* cert) {
|
| - AutoLock autoLock(cert_lock_);
|
| + base::AutoLock autoLock(cert_lock_);
|
|
|
| CertMap::iterator iter = id_to_cert_.find(cert_id);
|
| if (iter == id_to_cert_.end())
|
| @@ -109,7 +109,7 @@ void CertStore::RemoveCertInternal(int cert_id) {
|
| }
|
|
|
| void CertStore::RemoveCertsForRenderProcesHost(int process_id) {
|
| - AutoLock autoLock(cert_lock_);
|
| + base::AutoLock autoLock(cert_lock_);
|
|
|
| // We iterate through all the cert ids for that process.
|
| IDMap::iterator ids_iter;
|
|
|