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

Unified Diff: webrtc/base/sharedexclusivelock.h

Issue 1345433002: Add RTC_ prefix to contructormagic macros. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Formatting fix. Created 5 years, 3 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
« no previous file with comments | « webrtc/base/scopedptrcollection_unittest.cc ('k') | webrtc/base/signalthread.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/sharedexclusivelock.h
diff --git a/webrtc/base/sharedexclusivelock.h b/webrtc/base/sharedexclusivelock.h
index aaaba3b83ca54dec4a31b15f4942e68c24874903..a6ca5735a21fa3b5b7114f5e3433ca86e6c24964 100644
--- a/webrtc/base/sharedexclusivelock.h
+++ b/webrtc/base/sharedexclusivelock.h
@@ -36,7 +36,7 @@ class LOCKABLE SharedExclusiveLock {
rtc::Event shared_count_is_zero_;
int shared_count_;
- DISALLOW_COPY_AND_ASSIGN(SharedExclusiveLock);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SharedExclusiveLock);
};
class SCOPED_LOCKABLE SharedScope {
@@ -51,7 +51,7 @@ class SCOPED_LOCKABLE SharedScope {
private:
SharedExclusiveLock* lock_;
- DISALLOW_COPY_AND_ASSIGN(SharedScope);
+ RTC_DISALLOW_COPY_AND_ASSIGN(SharedScope);
};
class SCOPED_LOCKABLE ExclusiveScope {
@@ -67,7 +67,7 @@ class SCOPED_LOCKABLE ExclusiveScope {
private:
SharedExclusiveLock* lock_;
- DISALLOW_COPY_AND_ASSIGN(ExclusiveScope);
+ RTC_DISALLOW_COPY_AND_ASSIGN(ExclusiveScope);
};
} // namespace rtc
« no previous file with comments | « webrtc/base/scopedptrcollection_unittest.cc ('k') | webrtc/base/signalthread.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698