add SK_API to SkMutex (for chrome)
git-svn-id: http://skia.googlecode.com/svn/trunk@7443 2bbb7eff-a529-9590-31e7-b0007b416f81
This commit is contained in:
parent
2c8abb4daf
commit
8c0bc9b712
@ -157,7 +157,7 @@ struct SkBaseMutex {
|
||||
|
||||
// A normal mutex that requires to be initialized through normal C++ construction,
|
||||
// i.e. when it's a member of another class, or allocated on the heap.
|
||||
class SkMutex : public SkBaseMutex, SkNoncopyable {
|
||||
class SK_API SkMutex : public SkBaseMutex, SkNoncopyable {
|
||||
public:
|
||||
SkMutex();
|
||||
~SkMutex();
|
||||
@ -168,7 +168,7 @@ public:
|
||||
// In the generic case, SkBaseMutex and SkMutex are the same thing, and we
|
||||
// can't easily get rid of static initializers.
|
||||
//
|
||||
class SkMutex : SkNoncopyable {
|
||||
class SK_API SkMutex : SkNoncopyable {
|
||||
public:
|
||||
SkMutex();
|
||||
~SkMutex();
|
||||
|
Loading…
Reference in New Issue
Block a user