Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(448)

Unified Diff: base/synchronization/lock_impl.h

Issue 6725001: Base: First pass at having base.dll: definition of (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: base/synchronization/lock_impl.h
===================================================================
--- base/synchronization/lock_impl.h (revision 78949)
+++ base/synchronization/lock_impl.h (working copy)
@@ -14,6 +14,7 @@
#include <pthread.h>
#endif
+#include "base/base_api.h"
#include "base/basictypes.h"
namespace base {
@@ -22,7 +23,7 @@
// 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 {
wtc 2011/03/23 22:05:12 Why does an internal class LockImpl need BASE_API?
rvargas (doing something else) 2011/03/23 22:59:04 I swear I tried without modifying this file and th
public:
#if defined(OS_WIN)
typedef CRITICAL_SECTION OSLockType;

Powered by Google App Engine
This is Rietveld 408576698