Index: include/v8.h |
diff --git a/include/v8.h b/include/v8.h |
index 3918b329e217860eb0ba708bd36b7f0cc7bed572..7f0b31da0dfe30ba60bceb6daec89b97ba50fb30 100644 |
--- a/include/v8.h |
+++ b/include/v8.h |
@@ -3486,6 +3486,16 @@ class V8EXPORT V8 { |
static void VisitHandlesWithClassIds(PersistentHandleVisitor* visitor); |
/** |
+ * Iterates through all the persistent handles in the current isolate's heap |
+ * that have class_ids and are candidates to be marked as partially dependent |
+ * handles. This will visit handles to young objects created since the last |
+ * garbage collection but is free to visit an arbitrary superset of these |
+ * objects. |
+ */ |
+ static void VisitHandlesForPartialDependence(Isolate* isolate, |
Sven Panne
2013/01/18 08:14:30
Formatting nit: This should be on the next line.
haraken
2013/01/18 08:18:46
Done.
|
+ PersistentHandleVisitor* visitor); |
+ |
+ /** |
* Optional notification that the embedder is idle. |
* V8 uses the notification to reduce memory footprint. |
* This call can be used repeatedly if the embedder remains idle. |