Chromium Code Reviews| Index: include/v8.h |
| diff --git a/include/v8.h b/include/v8.h |
| index 3918b329e217860eb0ba708bd36b7f0cc7bed572..21822022b5e67f9fcd65936e6b28b22bf6d2df02 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( |
|
Sven Panne
2013/01/18 07:50:27
Let's add a mandatory Isolate parameter as the fir
haraken
2013/01/18 07:57:18
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. |