summaryrefslogtreecommitdiffstats
path: root/crypto/nss_util_internal.h
diff options
context:
space:
mode:
authordarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-05 20:59:11 +0000
committerdarin@chromium.org <darin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-08-05 20:59:11 +0000
commitd613a990ce4c522680e30db5b12d1c9e4e332ef8 (patch)
treefc1e1963694f4d9529745eb4c4fd655460fbec59 /crypto/nss_util_internal.h
parent5036f187c5431c1afc5bac442e1d74390d7a3fa0 (diff)
downloadchromium_src-d613a990ce4c522680e30db5b12d1c9e4e332ef8.zip
chromium_src-d613a990ce4c522680e30db5b12d1c9e4e332ef8.tar.gz
chromium_src-d613a990ce4c522680e30db5b12d1c9e4e332ef8.tar.bz2
Rename CRYPTO_API to CRYPTO_EXPORT.
R=rvargas@chromium.org Review URL: http://codereview.chromium.org/7491061 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95652 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto/nss_util_internal.h')
-rw-r--r--crypto/nss_util_internal.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/crypto/nss_util_internal.h b/crypto/nss_util_internal.h
index 4d6a928..ebb1844 100644
--- a/crypto/nss_util_internal.h
+++ b/crypto/nss_util_internal.h
@@ -8,7 +8,7 @@
#include <secmodt.h>
-#include "crypto/crypto_api.h"
+#include "crypto/crypto_export.h"
// These functions return a type defined in an NSS header, and so cannot be
// declared in nss_util.h. Hence, they are declared here.
@@ -18,14 +18,14 @@ namespace crypto {
// Returns a reference to the default NSS key slot for storing
// public-key data only (e.g. server certs). Caller must release
// returned reference with PK11_FreeSlot.
-CRYPTO_API PK11SlotInfo* GetPublicNSSKeySlot();
+CRYPTO_EXPORT PK11SlotInfo* GetPublicNSSKeySlot();
// Returns a reference to the default slot for storing private-key and
// mixed private-key/public-key data. Returns a hardware (TPM) NSS
// key slot if on ChromeOS and EnableTPMForNSS() has been called
// successfully. Caller must release returned reference with
// PK11_FreeSlot.
-CRYPTO_API PK11SlotInfo* GetPrivateNSSKeySlot();
+CRYPTO_EXPORT PK11SlotInfo* GetPrivateNSSKeySlot();
// A helper class that acquires the SECMOD list read lock while the
// AutoSECMODListReadLock is in scope.