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

Unified Diff: webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h

Issue 2048113002: Replaced ACCESS_ON alias with GUARDED_BY macros (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Created 4 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h
diff --git a/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h b/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h
index 5261415fba62d69b8c67d96882d5627687273302..8ee135e1b84097f5fd840baaf542b9b66414be5a 100644
--- a/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h
+++ b/webrtc/modules/rtp_rtcp/source/playout_delay_oracle.h
@@ -79,11 +79,11 @@ class PlayoutDelayOracle {
// Data in this section is accessed on the sending/encoder thread alone.
rtc::ThreadChecker thread_checker_;
// Sequence number unwrapper.
- SequenceNumberUnwrapper unwrapper_ ACCESS_ON(thread_checker_);
+ SequenceNumberUnwrapper unwrapper_ GUARDED_BY(thread_checker_);
// Min playout delay value on the next frame if |send_playout_delay_| is set.
- int min_playout_delay_ms_ ACCESS_ON(thread_checker_);
+ int min_playout_delay_ms_ GUARDED_BY(thread_checker_);
// Max playout delay value on the next frame if |send_playout_delay_| is set.
- int max_playout_delay_ms_ ACCESS_ON(thread_checker_);
+ int max_playout_delay_ms_ GUARDED_BY(thread_checker_);
RTC_DISALLOW_COPY_AND_ASSIGN(PlayoutDelayOracle);
};
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698