Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1876)

Unified Diff: net/base/cert_database_openssl.cc

Issue 8566056: This applies GUIDs to certificate and key nicknames when (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix memory leak Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/base/cert_database_openssl.cc
diff --git a/net/base/cert_database_openssl.cc b/net/base/cert_database_openssl.cc
index 76bd3f810a3a3b4bcbbdb2b46e6457c5d821a9d0..ca429c08238f4ee56b5578711d2493924cf4bed1 100644
--- a/net/base/cert_database_openssl.cc
+++ b/net/base/cert_database_openssl.cc
@@ -82,13 +82,6 @@ bool CertDatabase::DeleteCertAndKey(const X509Certificate* cert) {
return false;
}
-bool CertDatabase::DeleteCertAndKeyByLabel(const std::string& label) {
- // TODO(gspencer):Find the certificate with the given label
- // (nickname), and delete it.
- NOTIMPLEMENTED();
- return false;
-}
-
CertDatabase::TrustBits CertDatabase::GetCertTrust(const X509Certificate* cert,
CertType type) const {
// TODO(bulach): implement me.

Powered by Google App Engine
This is Rietveld 408576698