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

Unified Diff: webrtc/rtc_base/fakeclock.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/event_tracer.cc ('k') | webrtc/rtc_base/logging.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/rtc_base/fakeclock.h
diff --git a/webrtc/rtc_base/fakeclock.h b/webrtc/rtc_base/fakeclock.h
index c5bdab19afb4b81d59fa157de0993a7b7f03ebbf..b6a84e6e3d97ad7bff64c9c6101531da05804fcf 100644
--- a/webrtc/rtc_base/fakeclock.h
+++ b/webrtc/rtc_base/fakeclock.h
@@ -42,7 +42,7 @@ class FakeClock : public ClockInterface {
}
private:
CriticalSection lock_;
- int64_t time_ GUARDED_BY(lock_) = 0;
+ int64_t time_ RTC_GUARDED_BY(lock_) = 0;
};
// Helper class that sets itself as the global clock in its constructor and
« no previous file with comments | « webrtc/rtc_base/event_tracer.cc ('k') | webrtc/rtc_base/logging.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698