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

Unified Diff: third_party/WebKit/Source/platform/heap/Persistent.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
Index: third_party/WebKit/Source/platform/heap/Persistent.h
diff --git a/third_party/WebKit/Source/platform/heap/Persistent.h b/third_party/WebKit/Source/platform/heap/Persistent.h
index caf94e518646e15885507cc713d6a4d148fce61a..7763ec9e2462fccbc0b83f7e3180862bd3016366 100644
--- a/third_party/WebKit/Source/platform/heap/Persistent.h
+++ b/third_party/WebKit/Source/platform/heap/Persistent.h
@@ -172,7 +172,7 @@ class PersistentBase {
}
private:
- NO_LAZY_SWEEP_SANITIZE_ADDRESS
+ NO_SANITIZE_ADDRESS
void assign(T* ptr) {
if (crossThreadnessConfiguration == CrossThreadPersistentConfiguration)
releaseStore(reinterpret_cast<void* volatile*>(&m_raw), ptr);
@@ -203,7 +203,7 @@ class PersistentBase {
}
}
- NO_LAZY_SWEEP_SANITIZE_ADDRESS
+ NO_SANITIZE_ADDRESS
void initialize() {
ASSERT(!m_persistentNode);
if (!m_raw || isHashTableDeletedValue())
@@ -589,7 +589,7 @@ class PersistentHeapCollectionBase : public Collection {
collection->clear();
}
- NO_LAZY_SWEEP_SANITIZE_ADDRESS
+ NO_SANITIZE_ADDRESS
void initialize() {
// FIXME: Derive affinity based on the collection.
ThreadState* state = ThreadState::current();
« no previous file with comments | « third_party/WebKit/Source/platform/heap/Heap.h ('k') | third_party/WebKit/Source/platform/heap/PersistentNode.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698