Commit 1465da59 authored by bulach@chromium.org's avatar bulach@chromium.org

Fixes OpenSSL build following http://codereview.chromium.org/5686002/

BUG=none
TEST=compiles with use_openssl=1

Review URL: http://codereview.chromium.org/6307001

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@71433 0039d316-1c4b-4281-b951-d872f2087c98
parent 844acf37
...@@ -40,7 +40,14 @@ void CertDatabase::ListCerts(CertificateList* certs) { ...@@ -40,7 +40,14 @@ void CertDatabase::ListCerts(CertificateList* certs) {
NOTIMPLEMENTED(); 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) { const string16& password) {
// TODO(bulach): implement me. // TODO(bulach): implement me.
NOTIMPLEMENTED(); NOTIMPLEMENTED();
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment