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

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

Issue 850063002: Do not fire timers for finalizing objects. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 11 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: Source/platform/heap/Heap.h
diff --git a/Source/platform/heap/Heap.h b/Source/platform/heap/Heap.h
index 52ecf0673835cac59fe74693cd537382b00f4b97..0314c8be45b428a2f0791eeb34ff15643295e3ba 100644
--- a/Source/platform/heap/Heap.h
+++ b/Source/platform/heap/Heap.h
@@ -818,6 +818,11 @@ public:
static bool containedInHeapOrOrphanedPage(void*);
#endif
+ // Is the traceable GC object still alive? If no GC is in progress,
+ // it will be true. If a GC (lazy sweep, really) is in progress,
+ // it will be true iff the object has been marked.
+ static bool isObjectAlive(const void*);
+
// Push a trace callback on the marking stack.
static void pushTraceCallback(void* containerObject, TraceCallback);

Powered by Google App Engine
This is Rietveld 408576698