Index: net/ssl/client_key_store.cc |
diff --git a/net/ssl/client_key_store.cc b/net/ssl/client_key_store.cc |
index 87dafec16b0197cc4bc65753bd2f77b46d56882c..b448a6652d845d53d0f26b841dcbd6b4aa5346ee 100644 |
--- a/net/ssl/client_key_store.cc |
+++ b/net/ssl/client_key_store.cc |
@@ -43,7 +43,7 @@ scoped_refptr<SSLPrivateKey> ClientKeyStore::FetchClientCertPrivateKey( |
const X509Certificate& certificate) { |
base::AutoLock auto_lock(lock_); |
- for (const auto& provider : providers_) { |
+ for (auto* provider : providers_) { |
scoped_refptr<SSLPrivateKey> key; |
if (provider->GetCertificateKey(certificate, &key)) |
return key; |