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

Unified Diff: Source/heap/Handle.h

Issue 183683017: Use OwnPtrs for heap contains cache and persistent anchor. We were leaking the HeapContainsCache. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 10 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 | Source/heap/ThreadState.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/heap/Handle.h
diff --git a/Source/heap/Handle.h b/Source/heap/Handle.h
index d4ef8f136401f67d5e8737fc7e0ea2fa51491f74..0b8616dc111d53c8436df41d1c8befaadccc9c65 100644
--- a/Source/heap/Handle.h
+++ b/Source/heap/Handle.h
@@ -193,7 +193,6 @@ public:
current->trace(visitor);
}
-private:
virtual ~PersistentAnchor()
{
// FIXME: oilpan: Ideally we should have no left-over persistents at this point. However currently there is a
@@ -201,6 +200,8 @@ private:
// persistent or e.g. be RefCountedGarbageCollected we cannot guarantee there are no remaining Persistents at
// this point.
}
+
+private:
PersistentAnchor() : PersistentNode(TraceMethodDelegate<PersistentAnchor, &PersistentAnchor::trace>::trampoline)
{
m_next = this;
« no previous file with comments | « no previous file | Source/heap/ThreadState.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698