Index: net/cert/cert_database_android.cc |
diff --git a/net/cert/cert_database_android.cc b/net/cert/cert_database_android.cc |
index d9b0dfcd024340f94b98f68888ec26ff4f03c7fb..93b7742774b342ce2d023f35dfc5780acac8f5b9 100644 |
--- a/net/cert/cert_database_android.cc |
+++ b/net/cert/cert_database_android.cc |
@@ -7,7 +7,6 @@ |
#include "base/logging.h" |
#include "base/observer_list_threadsafe.h" |
#include "net/base/net_errors.h" |
-#include "net/ssl/openssl_client_key_store.h" |
namespace net { |
@@ -39,12 +38,6 @@ int CertDatabase::AddUserCert(X509Certificate* cert) { |
void CertDatabase::OnAndroidKeyStoreChanged() { |
NotifyObserversOfCertAdded(NULL); |
- // Dump the OpenSSLClientKeyStore to drop references to now disconnected |
- // PrivateKeys stored in the in-memory key store. Note: this assumes that |
- // every SSLClientAuthCache is dumped as part of notifying |
- // OnCertAdded. Otherwise client auth decisions will be silently converted to |
- // no-certificate decisions. See https://crbug.com/382696 |
- OpenSSLClientKeyStore::GetInstance()->Flush(); |
} |
void CertDatabase::OnAndroidKeyChainChanged() { |