summaryrefslogtreecommitdiffstats
path: root/base/synchronization
diff options
context:
space:
mode:
authorrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-22 22:11:08 +0000
committerrvargas@google.com <rvargas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2011-03-22 22:11:08 +0000
commitf53121d2c69801353feb2531446a1b1b93e576d4 (patch)
treeed081a0331dcb0df724fab00d043a1e5837e0857 /base/synchronization
parenta75573d945926b844f7b1932b11088dd3956577d (diff)
downloadchromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.zip
chromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.tar.gz
chromium_src-f53121d2c69801353feb2531446a1b1b93e576d4.tar.bz2
Base: First pass at having base.dll: definition of
BASE_API and a few files that use it. BUG=76996 TEST=none Review URL: http://codereview.chromium.org/6725001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79056 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/synchronization')
-rw-r--r--base/synchronization/lock.h3
-rw-r--r--base/synchronization/lock_impl.h3
-rw-r--r--base/synchronization/waitable_event.h3
3 files changed, 6 insertions, 3 deletions
diff --git a/base/synchronization/lock.h b/base/synchronization/lock.h
index f7c9c49..46d1ab3 100644
--- a/base/synchronization/lock.h
+++ b/base/synchronization/lock.h
@@ -6,6 +6,7 @@
#define BASE_SYNCHRONIZATION_LOCK_H_
#pragma once
+#include "base/base_api.h"
#include "base/synchronization/lock_impl.h"
#include "base/threading/platform_thread.h"
@@ -14,7 +15,7 @@ namespace base {
// A convenient wrapper for an OS specific critical section. The only real
// intelligence in this class is in debug mode for the support for the
// AssertAcquired() method.
-class Lock {
+class BASE_API Lock {
public:
#if defined(NDEBUG) // Optimized wrapper implementation
Lock() : lock_() {}
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;
diff --git a/base/synchronization/waitable_event.h b/base/synchronization/waitable_event.h
index 9f357d1..fe14e23 100644
--- a/base/synchronization/waitable_event.h
+++ b/base/synchronization/waitable_event.h
@@ -6,6 +6,7 @@
#define BASE_SYNCHRONIZATION_WAITABLE_EVENT_H_
#pragma once
+#include "base/base_api.h"
#include "base/basictypes.h"
#if defined(OS_WIN)
@@ -41,7 +42,7 @@ class TimeDelta;
// by a Windows event object. This is intentional. If you are writing Windows
// specific code and you need other features of a Windows event, then you might
// be better off just using an Windows event directly.
-class WaitableEvent {
+class BASE_API WaitableEvent {
public:
// If manual_reset is true, then to set the event state to non-signaled, a
// consumer must call the Reset method. If this parameter is false, then the