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

Unified Diff: third_party/WebKit/Source/platform/Timer.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 | « no previous file | third_party/WebKit/Source/platform/Timer.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/Timer.h
diff --git a/third_party/WebKit/Source/platform/Timer.h b/third_party/WebKit/Source/platform/Timer.h
index 243b9ba3533cd481a8e1470d3c15187d6da9ff7c..68aad6164d283980ef49201155328b3c560c178a 100644
--- a/third_party/WebKit/Source/platform/Timer.h
+++ b/third_party/WebKit/Source/platform/Timer.h
@@ -88,7 +88,7 @@ class PLATFORM_EXPORT TimerBase {
virtual WebTaskRunner* timerTaskRunner() const;
- NO_LAZY_SWEEP_SANITIZE_ADDRESS
+ NO_SANITIZE_ADDRESS
virtual bool canFire() const { return true; }
double timerMonotonicallyIncreasingTime() const;
@@ -141,7 +141,7 @@ class TaskRunnerTimer : public TimerBase {
protected:
void fired() override { (m_object->*m_function)(this); }
- NO_LAZY_SWEEP_SANITIZE_ADDRESS
+ NO_SANITIZE_ADDRESS
bool canFire() const override {
// Oilpan: if a timer fires while Oilpan heaps are being lazily
// swept, it is not safe to proceed if the object is about to
@@ -192,7 +192,7 @@ class UnthrottledThreadTimer : public TaskRunnerTimer<TimerFiredClass> {
timerFiredFunction) {}
};
-NO_LAZY_SWEEP_SANITIZE_ADDRESS
+NO_SANITIZE_ADDRESS
inline bool TimerBase::isActive() const {
ASSERT(m_thread == currentThread());
return m_weakPtrFactory.hasWeakPtrs();
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/Timer.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698