summaryrefslogtreecommitdiffstats
path: root/base/synchronization/lock_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/synchronization/lock_impl.h')
-rw-r--r--base/synchronization/lock_impl.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/base/synchronization/lock_impl.h b/base/synchronization/lock_impl.h
index 79bc147..63efc5ff 100644
--- a/base/synchronization/lock_impl.h
+++ b/base/synchronization/lock_impl.h
@@ -14,7 +14,7 @@
#include <pthread.h>
#endif
-#include "base/base_api.h"
+#include "base/base_export.h"
#include "base/basictypes.h"
namespace base {
@@ -23,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 BASE_API LockImpl {
+class BASE_EXPORT LockImpl {
public:
#if defined(OS_WIN)
typedef CRITICAL_SECTION OSLockType;