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

Unified Diff: Source/platform/Timer.cpp

Issue 1144933004: Revert of Various ASan exemptions to allow Oilpan pre-sweep poisoning of unmarkeds. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 7 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 | « Source/platform/Timer.h ('k') | Source/platform/heap/AddressSanitizer.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/Timer.cpp
diff --git a/Source/platform/Timer.cpp b/Source/platform/Timer.cpp
index 4d03435531e54270dc7453ec9db995db22beef5e..6a2111200a0957f6e6af3c7fda62a2a966ecb9ce 100644
--- a/Source/platform/Timer.cpp
+++ b/Source/platform/Timer.cpp
@@ -29,7 +29,6 @@
#include "platform/PlatformThreadData.h"
#include "platform/ThreadTimers.h"
-#include "platform/heap/AddressSanitizer.h"
#include "wtf/Atomics.h"
#include "wtf/CurrentTime.h"
#include "wtf/HashSet.h"
@@ -78,7 +77,6 @@
return *m_pointer;
}
-NO_LAZY_SWEEP_SANITIZE_ADDRESS
inline TimerHeapReference& TimerHeapReference::operator=(TimerBase* timer)
{
m_reference = timer;
@@ -88,7 +86,6 @@
return *this;
}
-NO_LAZY_SWEEP_SANITIZE_ADDRESS
inline TimerHeapReference& TimerHeapReference::operator=(TimerHeapReference b)
{
TimerBase* timer = b;
@@ -171,7 +168,6 @@
bool operator()(const TimerBase*, const TimerBase*) const;
};
-NO_LAZY_SWEEP_SANITIZE_ADDRESS
inline bool TimerHeapLessThanFunction::operator()(const TimerBase* a, const TimerBase* b) const
{
// The comparisons below are "backwards" because the heap puts the largest
@@ -294,7 +290,6 @@
heapDecreaseKey();
}
-NO_LAZY_SWEEP_SANITIZE_ADDRESS
inline void TimerBase::heapPop()
{
// Temporarily force this timer to have the minimum key so we can pop it.
« no previous file with comments | « Source/platform/Timer.h ('k') | Source/platform/heap/AddressSanitizer.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698