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

Unified Diff: webrtc/video/rtp_streams_synchronizer.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/receive_statistics_proxy.h ('k') | webrtc/video/rtp_video_stream_receiver.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/video/rtp_streams_synchronizer.h
diff --git a/webrtc/video/rtp_streams_synchronizer.h b/webrtc/video/rtp_streams_synchronizer.h
index dfc0ddb115b02eecdb3a74b435413f8237ef3412..c8f2d2ac1d10e2e7dd77f2496a9c9f0800294201 100644
--- a/webrtc/video/rtp_streams_synchronizer.h
+++ b/webrtc/video/rtp_streams_synchronizer.h
@@ -52,13 +52,13 @@ class RtpStreamsSynchronizer : public Module {
Syncable* syncable_video_;
rtc::CriticalSection crit_;
- Syncable* syncable_audio_ GUARDED_BY(crit_);
- std::unique_ptr<StreamSynchronization> sync_ GUARDED_BY(crit_);
- StreamSynchronization::Measurements audio_measurement_ GUARDED_BY(crit_);
- StreamSynchronization::Measurements video_measurement_ GUARDED_BY(crit_);
+ Syncable* syncable_audio_ RTC_GUARDED_BY(crit_);
+ std::unique_ptr<StreamSynchronization> sync_ RTC_GUARDED_BY(crit_);
+ StreamSynchronization::Measurements audio_measurement_ RTC_GUARDED_BY(crit_);
+ StreamSynchronization::Measurements video_measurement_ RTC_GUARDED_BY(crit_);
rtc::ThreadChecker process_thread_checker_;
- int64_t last_sync_time_ ACCESS_ON(&process_thread_checker_);
+ int64_t last_sync_time_ RTC_ACCESS_ON(&process_thread_checker_);
};
} // namespace webrtc
« no previous file with comments | « webrtc/video/receive_statistics_proxy.h ('k') | webrtc/video/rtp_video_stream_receiver.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698