summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authorthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-28 04:10:05 +0000
committerthakis@chromium.org <thakis@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-03-28 04:10:05 +0000
commit1a46fa6ed3e1acb03a6d05f63c09b06129c8a639 (patch)
treec0aea3647440e1bc35064fde5d02565a04b0a48e /crypto
parente76a1a10c364a93ee7a4db8ab87ce6d07d644137 (diff)
downloadchromium_src-1a46fa6ed3e1acb03a6d05f63c09b06129c8a639.zip
chromium_src-1a46fa6ed3e1acb03a6d05f63c09b06129c8a639.tar.gz
chromium_src-1a46fa6ed3e1acb03a6d05f63c09b06129c8a639.tar.bz2
New CRYPTO_EXPORT macros.
BUG=90078 TEST=none Review URL: https://chromiumcodereview.appspot.com/9873017 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@129368 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'crypto')
-rw-r--r--crypto/keychain_mac.h3
-rw-r--r--crypto/mock_keychain_mac.h2
2 files changed, 3 insertions, 2 deletions
diff --git a/crypto/keychain_mac.h b/crypto/keychain_mac.h
index 39ba31c..cde96b3 100644
--- a/crypto/keychain_mac.h
+++ b/crypto/keychain_mac.h
@@ -9,6 +9,7 @@
#include <Security/Security.h>
#include "base/basictypes.h"
+#include "crypto/crypto_export.h"
namespace crypto {
@@ -20,7 +21,7 @@ namespace crypto {
// SecKeychainFoo). The only exception is Free, which should be used for
// anything returned from this class that would normally be freed with
// CFRelease (to aid in testing).
-class MacKeychain {
+class CRYPTO_EXPORT MacKeychain {
public:
MacKeychain();
virtual ~MacKeychain();
diff --git a/crypto/mock_keychain_mac.h b/crypto/mock_keychain_mac.h
index d52353e..51f7251 100644
--- a/crypto/mock_keychain_mac.h
+++ b/crypto/mock_keychain_mac.h
@@ -24,7 +24,7 @@ namespace crypto {
// Note that "const" is pretty much meaningless for this class; the const-ness
// of MacKeychain doesn't apply to the actual keychain data, so all of the Mock
// data is mutable; don't assume that it won't change over the life of tests.
-class MockKeychain : public MacKeychain {
+class CRYPTO_EXPORT MockKeychain : public MacKeychain {
public:
MockKeychain();
virtual ~MockKeychain();