summaryrefslogtreecommitdiffstats
path: root/base/message_loop.cc
diff options
context:
space:
mode:
Diffstat (limited to 'base/message_loop.cc')
-rw-r--r--base/message_loop.cc5
1 files changed, 2 insertions, 3 deletions
diff --git a/base/message_loop.cc b/base/message_loop.cc
index 02534f5..19ce904 100644
--- a/base/message_loop.cc
+++ b/base/message_loop.cc
@@ -532,12 +532,11 @@ void MessageLoop::ReloadWorkQueue() {
bool MessageLoop::DeletePendingTasks() {
bool did_work = !work_queue_.empty();
// TODO(darin): Delete all tasks once it is safe to do so.
- // Until it is totally safe, just do it when running Purify or
- // Valgrind.
+ // Until it is totally safe, just do it when running Valgrind.
//
// See http://crbug.com/61131
//
-#if defined(PURIFY) || defined(USE_HEAPCHECKER)
+#if defined(USE_HEAPCHECKER)
should_leak_tasks_ = false;
#else
if (RunningOnValgrind())