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

Unified Diff: webrtc/voice_engine/audio_level.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/video_stream_encoder_unittest.cc ('k') | webrtc/voice_engine/channel.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/voice_engine/audio_level.h
diff --git a/webrtc/voice_engine/audio_level.h b/webrtc/voice_engine/audio_level.h
index d69365afb6ee460bf4d6bcc1d32a5d0664803148..33f8fe2d51474d195f466c1eed12897cbdf94624 100644
--- a/webrtc/voice_engine/audio_level.h
+++ b/webrtc/voice_engine/audio_level.h
@@ -45,13 +45,13 @@ class AudioLevel {
rtc::CriticalSection crit_sect_;
- int16_t abs_max_ GUARDED_BY(crit_sect_);
- int16_t count_ GUARDED_BY(crit_sect_);
- int8_t current_level_ GUARDED_BY(crit_sect_);
- int16_t current_level_full_range_ GUARDED_BY(crit_sect_);
+ int16_t abs_max_ RTC_GUARDED_BY(crit_sect_);
+ int16_t count_ RTC_GUARDED_BY(crit_sect_);
+ int8_t current_level_ RTC_GUARDED_BY(crit_sect_);
+ int16_t current_level_full_range_ RTC_GUARDED_BY(crit_sect_);
- double total_energy_ GUARDED_BY(crit_sect_) = 0.0;
- double total_duration_ GUARDED_BY(crit_sect_) = 0.0;
+ double total_energy_ RTC_GUARDED_BY(crit_sect_) = 0.0;
+ double total_duration_ RTC_GUARDED_BY(crit_sect_) = 0.0;
};
} // namespace voe
« no previous file with comments | « webrtc/video/video_stream_encoder_unittest.cc ('k') | webrtc/voice_engine/channel.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698