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

Unified Diff: Source/heap/Heap.h

Issue 197343003: Fix PersistentHeapHashMap to work with stack allocated, heap backed weak collections (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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/Heap.cpp » ('j') | Source/wtf/HashTable.h » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/heap/Heap.h
diff --git a/Source/heap/Heap.h b/Source/heap/Heap.h
index 8e59b282ccba646aaba34729cd57304048e120b3..d4f4a4d7e7832f4674ec6b35e51138174045ad67 100644
--- a/Source/heap/Heap.h
+++ b/Source/heap/Heap.h
@@ -779,7 +779,7 @@ public:
// on a static callback stack and the weak callback is performed
// on the thread performing garbage collection. This is OK because
// cells are just cleared and no deallocation can happen.
- static void pushWeakObjectPointerCallback(void* containerObject, WeakPointerCallback);
+ static void pushWeakObjectPointerCallback(void* closure, void* containerObject, WeakPointerCallback);
Mads Ager (chromium) 2014/03/12 15:46:50 Please update the comment with an explanation of w
Erik Corry 2014/03/13 07:46:21 Done.
static void pushWeakCellPointerCallback(void** cell, WeakPointerCallback);
// Pop the top of the marking stack and call the callback with the visitor
@@ -1263,9 +1263,9 @@ public:
return hasDeadMember(visitor, t.key) || hasDeadMember(visitor, t.value);
}
- static void registerWeakMembers(Visitor* visitor, const void* object, WeakPointerCallback callback)
+ static void registerWeakMembers(Visitor* visitor, const void* closure, const void* object, WeakPointerCallback callback)
{
- visitor->registerWeakMembers(object, callback);
+ visitor->registerWeakMembers(closure, object, callback);
}
template<typename T>
« no previous file with comments | « no previous file | Source/heap/Heap.cpp » ('j') | Source/wtf/HashTable.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698