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

Unified Diff: webrtc/video/payload_router.h

Issue 3012853002: Update thread annotiation macros 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/video/overuse_frame_detector.h ('k') | webrtc/video/picture_id_tests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/payload_router.h
diff --git a/webrtc/video/payload_router.h b/webrtc/video/payload_router.h
index bfd4b8e5577a703a060009eedb4f848302c77f51..082ba369ff2c7e262da441cbc33287678bfb87ec 100644
--- a/webrtc/video/payload_router.h
+++ b/webrtc/video/payload_router.h
@@ -49,10 +49,10 @@ class PayloadRouter : public EncodedImageCallback {
void OnBitrateAllocationUpdated(const BitrateAllocation& bitrate);
private:
- void UpdateModuleSendingState() EXCLUSIVE_LOCKS_REQUIRED(crit_);
+ void UpdateModuleSendingState() RTC_EXCLUSIVE_LOCKS_REQUIRED(crit_);
rtc::CriticalSection crit_;
- bool active_ GUARDED_BY(crit_);
+ bool active_ RTC_GUARDED_BY(crit_);
// Rtp modules are assumed to be sorted in simulcast index order. Not owned.
const std::vector<RtpRtcp*> rtp_modules_;
« no previous file with comments | « webrtc/video/overuse_frame_detector.h ('k') | webrtc/video/picture_id_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698