summaryrefslogtreecommitdiffstats
path: root/base/synchronization
diff options
context:
space:
mode:
authorevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-29 20:45:22 +0000
committerevan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-04-29 20:45:22 +0000
commit91d91fac1db8f2f163e4873bd93a65f4fada37ee (patch)
treea128f7ef2b816771bc0a69fa025350992c4ba5b9 /base/synchronization
parent666f40f61545af4f8f52d964c341d01630a352cd (diff)
downloadchromium_src-91d91fac1db8f2f163e4873bd93a65f4fada37ee.zip
chromium_src-91d91fac1db8f2f163e4873bd93a65f4fada37ee.tar.gz
chromium_src-91d91fac1db8f2f163e4873bd93a65f4fada37ee.tar.bz2
linux: components support for base/
This builds base_unittests using libbase as a component. Review URL: http://codereview.chromium.org/6904109 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@83583 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/synchronization')
-rw-r--r--base/synchronization/lock_impl.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/base/synchronization/lock_impl.h b/base/synchronization/lock_impl.h
index 2994610..79bc147 100644
--- a/base/synchronization/lock_impl.h
+++ b/base/synchronization/lock_impl.h
@@ -14,6 +14,7 @@
#include <pthread.h>
#endif
+#include "base/base_api.h"
#include "base/basictypes.h"
namespace base {
@@ -22,7 +23,7 @@ namespace internal {
// This class implements the underlying platform-specific spin-lock mechanism
// used for the Lock class. Most users should not use LockImpl directly, but
// should instead use Lock.
-class LockImpl {
+class BASE_API LockImpl {
public:
#if defined(OS_WIN)
typedef CRITICAL_SECTION OSLockType;