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

Unified Diff: net/base/cert_database_openssl.cc

Issue 6307001: Fixes OpenSSL build following http://codereview.chromium.org/5686002/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Patch Created 9 years, 11 months 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/cert_database_openssl.cc
diff --git a/net/base/cert_database_openssl.cc b/net/base/cert_database_openssl.cc
index ec5ec246315cd16930622cf23db7651d17ab97bd..51a2308caa39012c51e287f7758d6c21bfdd5133 100644
--- a/net/base/cert_database_openssl.cc
+++ b/net/base/cert_database_openssl.cc
@@ -40,7 +40,14 @@ void CertDatabase::ListCerts(CertificateList* certs) {
NOTIMPLEMENTED();
}
-int CertDatabase::ImportFromPKCS12(const std::string& data,
+CryptoModule* CertDatabase::GetDefaultModule() const {
+ // TODO(bulach): implement me.
+ NOTIMPLEMENTED();
+ return NULL;
+}
+
+int CertDatabase::ImportFromPKCS12(net::CryptoModule* module,
+ const std::string& data,
const string16& password) {
// TODO(bulach): implement me.
NOTIMPLEMENTED();
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698