| Index: webrtc/rtc_base/criticalsection_unittest.cc
|
| diff --git a/webrtc/rtc_base/criticalsection_unittest.cc b/webrtc/rtc_base/criticalsection_unittest.cc
|
| index c264e44bd7d3b2c0a05e4dd524c9e782e6188c0b..2e136bf80418a3837837caf0bd9ee0fb6bd7eaf9 100644
|
| --- a/webrtc/rtc_base/criticalsection_unittest.cc
|
| +++ b/webrtc/rtc_base/criticalsection_unittest.cc
|
| @@ -113,10 +113,14 @@
|
| int shared_value_;
|
| };
|
|
|
| -class RTC_LOCKABLE CriticalSectionLock {
|
| - public:
|
| - void Lock() RTC_EXCLUSIVE_LOCK_FUNCTION() { cs_.Enter(); }
|
| - void Unlock() RTC_UNLOCK_FUNCTION() { cs_.Leave(); }
|
| +class LOCKABLE CriticalSectionLock {
|
| + public:
|
| + void Lock() EXCLUSIVE_LOCK_FUNCTION() {
|
| + cs_.Enter();
|
| + }
|
| + void Unlock() UNLOCK_FUNCTION() {
|
| + cs_.Leave();
|
| + }
|
|
|
| private:
|
| CriticalSection cs_;
|
|
|