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

Unified Diff: webrtc/call/bitrate_allocator.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/audio/audio_state.h ('k') | webrtc/call/bitrate_estimator_tests.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/call/bitrate_allocator.h
diff --git a/webrtc/call/bitrate_allocator.h b/webrtc/call/bitrate_allocator.h
index b36d38e652a50e1604b58a44f38f0bf08142c3e4..b9bbc93b770946c596922a2a25cc782af36e7991 100644
--- a/webrtc/call/bitrate_allocator.h
+++ b/webrtc/call/bitrate_allocator.h
@@ -153,20 +153,20 @@ class BitrateAllocator {
uint32_t sum_min_bitrates);
rtc::SequencedTaskChecker sequenced_checker_;
- LimitObserver* const limit_observer_ GUARDED_BY(&sequenced_checker_);
+ LimitObserver* const limit_observer_ RTC_GUARDED_BY(&sequenced_checker_);
// Stored in a list to keep track of the insertion order.
- ObserverConfigs bitrate_observer_configs_ GUARDED_BY(&sequenced_checker_);
- uint32_t last_bitrate_bps_ GUARDED_BY(&sequenced_checker_);
- uint32_t last_non_zero_bitrate_bps_ GUARDED_BY(&sequenced_checker_);
- uint8_t last_fraction_loss_ GUARDED_BY(&sequenced_checker_);
- int64_t last_rtt_ GUARDED_BY(&sequenced_checker_);
- int64_t last_bwe_period_ms_ GUARDED_BY(&sequenced_checker_);
+ ObserverConfigs bitrate_observer_configs_ RTC_GUARDED_BY(&sequenced_checker_);
+ uint32_t last_bitrate_bps_ RTC_GUARDED_BY(&sequenced_checker_);
+ uint32_t last_non_zero_bitrate_bps_ RTC_GUARDED_BY(&sequenced_checker_);
+ uint8_t last_fraction_loss_ RTC_GUARDED_BY(&sequenced_checker_);
+ int64_t last_rtt_ RTC_GUARDED_BY(&sequenced_checker_);
+ int64_t last_bwe_period_ms_ RTC_GUARDED_BY(&sequenced_checker_);
// Number of mute events based on too low BWE, not network up/down.
- int num_pause_events_ GUARDED_BY(&sequenced_checker_);
- Clock* const clock_ GUARDED_BY(&sequenced_checker_);
- int64_t last_bwe_log_time_ GUARDED_BY(&sequenced_checker_);
- uint32_t total_requested_padding_bitrate_ GUARDED_BY(&sequenced_checker_);
- uint32_t total_requested_min_bitrate_ GUARDED_BY(&sequenced_checker_);
+ int num_pause_events_ RTC_GUARDED_BY(&sequenced_checker_);
+ Clock* const clock_ RTC_GUARDED_BY(&sequenced_checker_);
+ int64_t last_bwe_log_time_ RTC_GUARDED_BY(&sequenced_checker_);
+ uint32_t total_requested_padding_bitrate_ RTC_GUARDED_BY(&sequenced_checker_);
+ uint32_t total_requested_min_bitrate_ RTC_GUARDED_BY(&sequenced_checker_);
};
} // namespace webrtc
#endif // WEBRTC_CALL_BITRATE_ALLOCATOR_H_
« no previous file with comments | « webrtc/audio/audio_state.h ('k') | webrtc/call/bitrate_estimator_tests.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698