diff options
Diffstat (limited to 'skia')
-rw-r--r-- | skia/ext/SkThread_chrome.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/skia/ext/SkThread_chrome.cc b/skia/ext/SkThread_chrome.cc index 948cf1f..8ea584a 100644 --- a/skia/ext/SkThread_chrome.cc +++ b/skia/ext/SkThread_chrome.cc @@ -23,7 +23,7 @@ int32_t sk_atomic_dec(int32_t* addr) { return base::subtle::Barrier_AtomicIncrement(addr, -1) + 1; } -SkMutex::SkMutex(bool isGlobal) : fIsGlobal(isGlobal) { +SkMutex::SkMutex() { COMPILE_ASSERT(sizeof(base::Lock) <= sizeof(fStorage), Lock_is_too_big_for_SkMutex); base::Lock* lock = reinterpret_cast<base::Lock*>(fStorage); new(lock) base::Lock(); |