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

Unified Diff: webrtc/test/single_threaded_task_queue.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/test/frame_generator_capturer.h ('k') | webrtc/test/vcm_capturer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/single_threaded_task_queue.h
diff --git a/webrtc/test/single_threaded_task_queue.h b/webrtc/test/single_threaded_task_queue.h
index ecb22b38eb17b619465bf9f743bffabb64df068d..c078bdd07747219925b9e4d5916cd68af19ef19a 100644
--- a/webrtc/test/single_threaded_task_queue.h
+++ b/webrtc/test/single_threaded_task_queue.h
@@ -71,10 +71,10 @@ class SingleThreadedTaskQueueForTesting {
void RunLoop();
rtc::CriticalSection cs_;
- std::list<std::unique_ptr<QueuedTask>> tasks_ GUARDED_BY(cs_);
+ std::list<std::unique_ptr<QueuedTask>> tasks_ RTC_GUARDED_BY(cs_);
rtc::ThreadChecker owner_thread_checker_;
rtc::PlatformThread thread_;
- bool running_ GUARDED_BY(cs_);
+ bool running_ RTC_GUARDED_BY(cs_);
TaskId next_task_id_;
« no previous file with comments | « webrtc/test/frame_generator_capturer.h ('k') | webrtc/test/vcm_capturer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698