summaryrefslogtreecommitdiffstats
path: root/net/ssl
diff options
context:
space:
mode:
authordavidben <davidben@chromium.org>2014-10-30 14:44:16 -0700
committerCommit bot <commit-bot@chromium.org>2014-10-30 21:44:44 +0000
commitd5587416cd28f2449ec86fa2f23e0f1de04878cc (patch)
treebf931730677b357c8b5dc56996169d051c0cddd1 /net/ssl
parent044d85df5e5e3fbf5d826c694ebf5d4bca7706ce (diff)
downloadchromium_src-d5587416cd28f2449ec86fa2f23e0f1de04878cc.zip
chromium_src-d5587416cd28f2449ec86fa2f23e0f1de04878cc.tar.gz
chromium_src-d5587416cd28f2449ec86fa2f23e0f1de04878cc.tar.bz2
Get net_unittests working on Windows BoringSSL port.
BUG=338884 Review URL: https://codereview.chromium.org/687833002 Cr-Commit-Position: refs/heads/master@{#302161}
Diffstat (limited to 'net/ssl')
-rw-r--r--net/ssl/openssl_client_key_store.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ssl/openssl_client_key_store.h b/net/ssl/openssl_client_key_store.h
index 6c06148..bba19a3 100644
--- a/net/ssl/openssl_client_key_store.h
+++ b/net/ssl/openssl_client_key_store.h
@@ -43,8 +43,8 @@ class NET_EXPORT OpenSSLClientKeyStore {
// Returns false if an error occured.
// This function does not take ownership of the private_key, but may
// increment its internal reference count.
- NET_EXPORT bool RecordClientCertPrivateKey(const X509Certificate* cert,
- EVP_PKEY* private_key);
+ bool RecordClientCertPrivateKey(const X509Certificate* cert,
+ EVP_PKEY* private_key);
// Given a certificate's |public_key|, return the corresponding private
// key that has been recorded previously by RecordClientCertPrivateKey().