summaryrefslogtreecommitdiff
path: root/chromium/base/thread_annotations.h
diff options
context:
space:
mode:
authorAllan Sandfeld Jensen <allan.jensen@qt.io>2021-05-20 09:47:09 +0200
committerAllan Sandfeld Jensen <allan.jensen@qt.io>2021-06-07 11:15:42 +0000
commit189d4fd8fad9e3c776873be51938cd31a42b6177 (patch)
tree6497caeff5e383937996768766ab3bb2081a40b2 /chromium/base/thread_annotations.h
parent8bc75099d364490b22f43a7ce366b366c08f4164 (diff)
downloadqtwebengine-chromium-189d4fd8fad9e3c776873be51938cd31a42b6177.tar.gz
BASELINE: Update Chromium to 90.0.4430.221
Change-Id: Iff4d9d18d2fcf1a576f3b1f453010f744a232920 Reviewed-by: Allan Sandfeld Jensen <allan.jensen@qt.io>
Diffstat (limited to 'chromium/base/thread_annotations.h')
-rw-r--r--chromium/base/thread_annotations.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/chromium/base/thread_annotations.h b/chromium/base/thread_annotations.h
index ca4daac7d49..33dab46f891 100644
--- a/chromium/base/thread_annotations.h
+++ b/chromium/base/thread_annotations.h
@@ -243,15 +243,9 @@ inline T& ts_unchecked_read(T& v) NO_THREAD_SAFETY_ANALYSIS {
#if DCHECK_IS_ON()
// Equivalent to GUARDED_BY for SequenceChecker/ThreadChecker. Currently,
-// clang's error message "requires holding mutex" is misleading. Usage of this
-// macro is discouraged until the message is updated.
-// TODO(etiennep): Update comment above once clang's error message is updated.
#define GUARDED_BY_CONTEXT(name) GUARDED_BY(name)
// Equivalent to EXCLUSIVE_LOCKS_REQUIRED for SequenceChecker/ThreadChecker.
-// Currently, clang's error message "requires holding mutex" is misleading.
-// Usage of this macro is discouraged until the message is updated.
-// TODO(etiennep): Update comment above once clang's error message is updated.
#define VALID_CONTEXT_REQUIRED(name) EXCLUSIVE_LOCKS_REQUIRED(name)
#else // DCHECK_IS_ON()