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

Unified Diff: webrtc/rtc_base/rate_limiter.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/race_checker.h ('k') | webrtc/rtc_base/sequenced_task_checker.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/rtc_base/rate_limiter.h
diff --git a/webrtc/rtc_base/rate_limiter.h b/webrtc/rtc_base/rate_limiter.h
index b4b9080faa807323f4e8bec9b384f231218f7e7a..e3f6249a5eea309f6d28f87fdfb438f543928f99 100644
--- a/webrtc/rtc_base/rate_limiter.h
+++ b/webrtc/rtc_base/rate_limiter.h
@@ -44,9 +44,9 @@ class RateLimiter {
private:
const Clock* const clock_;
rtc::CriticalSection lock_;
- RateStatistics current_rate_ GUARDED_BY(lock_);
- int64_t window_size_ms_ GUARDED_BY(lock_);
- uint32_t max_rate_bps_ GUARDED_BY(lock_);
+ RateStatistics current_rate_ RTC_GUARDED_BY(lock_);
+ int64_t window_size_ms_ RTC_GUARDED_BY(lock_);
+ uint32_t max_rate_bps_ RTC_GUARDED_BY(lock_);
RTC_DISALLOW_IMPLICIT_CONSTRUCTORS(RateLimiter);
};
« no previous file with comments | « webrtc/rtc_base/race_checker.h ('k') | webrtc/rtc_base/sequenced_task_checker.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698