Index: net/base/cert_database_openssl.cc |
diff --git a/net/base/cert_database_openssl.cc b/net/base/cert_database_openssl.cc |
index 82f7fd8af359337f8b54bb3f2fff8ba89c0ed4a4..fcdf10b3299f0241546d4697cd744f676c28f685 100644 |
--- a/net/base/cert_database_openssl.cc |
+++ b/net/base/cert_database_openssl.cc |
@@ -36,66 +36,4 @@ int CertDatabase::AddUserCert(X509Certificate* cert) { |
return ERR_NOT_IMPLEMENTED; |
} |
-void CertDatabase::ListCerts(CertificateList* certs) { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
-} |
- |
-CryptoModule* CertDatabase::GetPublicModule() const { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
- return NULL; |
-} |
- |
-CryptoModule* CertDatabase::GetPrivateModule() const { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
- return NULL; |
-} |
- |
-void CertDatabase::ListModules(CryptoModuleList* modules, bool need_rw) const { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
- modules->clear(); |
-} |
- |
-int CertDatabase::ImportFromPKCS12(CryptoModule* module, |
- const std::string& data, |
- const string16& password, |
- bool is_extractable, |
- CertificateList* imported_certs) { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
- return ERR_NOT_IMPLEMENTED; |
-} |
- |
-int CertDatabase::ExportToPKCS12(const CertificateList& certs, |
- const string16& password, |
- std::string* output) const { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
- return 0; |
-} |
- |
-bool CertDatabase::DeleteCertAndKey(const X509Certificate* cert) { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
- return false; |
-} |
- |
-CertDatabase::TrustBits CertDatabase::GetCertTrust(const X509Certificate* cert, |
- CertType type) const { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
- return 0; |
-} |
- |
-bool CertDatabase::SetCertTrust(const X509Certificate* cert, |
- CertType type, |
- TrustBits trust_bits) { |
- // TODO(bulach): implement me. |
- NOTIMPLEMENTED(); |
- return false; |
-} |
- |
} // namespace net |