This is an automated email from the git hooks/post-receive script.
pierov pushed a commit to branch tor-browser-91.10.0esr-11.0-1 in repository tor-browser.
commit 157adf4445d903bcd58a7943aebe4332333601f5 Author: Ryan VanderMeulen ryanvm@gmail.com AuthorDate: Fri May 13 11:07:01 2022 -0400
Bug 1760765 - Remove spurious GUARDED_BY annotations. r=jib, a=bustage --- dom/media/systemservices/MediaParent.cpp | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/dom/media/systemservices/MediaParent.cpp b/dom/media/systemservices/MediaParent.cpp index c3db97223911d..6a90ca3251ca0 100644 --- a/dom/media/systemservices/MediaParent.cpp +++ b/dom/media/systemservices/MediaParent.cpp @@ -392,9 +392,8 @@ class OriginKeyStore { }
// Only accessed on StreamTS threads - OriginKeysLoader mOriginKeys GUARDED_BY(sOriginKeyStoreStsMutex); - OriginKeysTable mPrivateBrowsingOriginKeys - GUARDED_BY(sOriginKeyStoreStsMutex); + OriginKeysLoader mOriginKeys; + OriginKeysTable mPrivateBrowsingOriginKeys; }; OriginKeyStore* OriginKeyStore::sOriginKeyStore = nullptr;