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

Unified Diff: third_party/WebKit/Source/platform/heap/Heap.h

Issue 2390553002: Remove NO_LAZY_SWEEP_SANITIZE_ADDRESS (Closed)
Patch Set: temp Created 4 years, 2 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 | « third_party/WebKit/Source/platform/Timer.cpp ('k') | third_party/WebKit/Source/platform/heap/Persistent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/heap/Heap.h
diff --git a/third_party/WebKit/Source/platform/heap/Heap.h b/third_party/WebKit/Source/platform/heap/Heap.h
index c3a0eb42f6372818097f95af0887d0d161509f35..3e9e278ff6c562423fa1f7f3246b7db0fe13253d 100644
--- a/third_party/WebKit/Source/platform/heap/Heap.h
+++ b/third_party/WebKit/Source/platform/heap/Heap.h
@@ -104,7 +104,7 @@ class ObjectAliveTrait<T, true> {
STATIC_ONLY(ObjectAliveTrait);
public:
- NO_LAZY_SWEEP_SANITIZE_ADDRESS
+ NO_SANITIZE_ADDRESS
static bool isHeapObjectAlive(T* object) {
static_assert(sizeof(T), "T must be fully defined");
return object->isHeapObjectAlive();
@@ -323,7 +323,7 @@ class PLATFORM_EXPORT ThreadHeap {
// to be in; willObjectBeLazilySwept() has undefined behavior if passed
// such a reference.
template <typename T>
- NO_LAZY_SWEEP_SANITIZE_ADDRESS static bool willObjectBeLazilySwept(
+ NO_SANITIZE_ADDRESS static bool willObjectBeLazilySwept(
const T* objectPointer) {
static_assert(IsGarbageCollectedType<T>::value,
"only objects deriving from GarbageCollected can be used.");
« no previous file with comments | « third_party/WebKit/Source/platform/Timer.cpp ('k') | third_party/WebKit/Source/platform/heap/Persistent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698