aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/private
diff options
context:
space:
mode:
authorGravatar herb <herb@google.com>2015-10-23 10:48:26 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2015-10-23 10:48:26 -0700
commit546dc3294d6ad17bdaae40430e799ea33acfe943 (patch)
treed12c96447e135d077274679395072c968c01e504 /include/private
parent51eedb6e7db0de1d81128b727bfb9df60d77aa98 (diff)
Use SkAutoTExclusive guard in DirectWrite port.
Diffstat (limited to 'include/private')
-rw-r--r--include/private/SkMutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/private/SkMutex.h b/include/private/SkMutex.h
index da44f648d0..8c78e1205c 100644
--- a/include/private/SkMutex.h
+++ b/include/private/SkMutex.h
@@ -119,7 +119,7 @@ private:
typedef SkAutoTAcquire<SkBaseMutex> SkAutoMutexAcquire;
#define SkAutoMutexAcquire(...) SK_REQUIRE_LOCAL_VAR(SkAutoMutexAcquire)
-typedef SkAutoTExclusive<SkMutex> SkAutoMutexExclusive;
+typedef SkAutoTExclusive<SkBaseMutex> SkAutoMutexExclusive;
#define SkAutoMutexExclusive(...) SK_REQUIRE_LOCAL_VAR(SkAutoMutexExclusive)
#endif//SkMutex_DEFINED