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

Unified Diff: webrtc/rtc_base/bufferqueue.h

Issue 3006133002: Update thread annotiation macros in rtc_base to use RTC_ prefix (Closed)
Patch Set: Rebase Created 3 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/rtc_base/asyncinvoker.h ('k') | webrtc/rtc_base/criticalsection.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/rtc_base/bufferqueue.h
diff --git a/webrtc/rtc_base/bufferqueue.h b/webrtc/rtc_base/bufferqueue.h
index 3abb8cfa6a1f765ea3ea9e54be8a577ac766bf6b..82f1ac1a18b9ebd2659c1ffee067cfe73d700397 100644
--- a/webrtc/rtc_base/bufferqueue.h
+++ b/webrtc/rtc_base/bufferqueue.h
@@ -50,8 +50,8 @@ class BufferQueue {
size_t capacity_;
size_t default_size_;
CriticalSection crit_;
- std::deque<Buffer*> queue_ GUARDED_BY(crit_);
- std::vector<Buffer*> free_list_ GUARDED_BY(crit_);
+ std::deque<Buffer*> queue_ RTC_GUARDED_BY(crit_);
+ std::vector<Buffer*> free_list_ RTC_GUARDED_BY(crit_);
RTC_DISALLOW_COPY_AND_ASSIGN(BufferQueue);
};
« no previous file with comments | « webrtc/rtc_base/asyncinvoker.h ('k') | webrtc/rtc_base/criticalsection.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698