Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index 3fab8de82fe3a50b7b089810a734b6f4e7369bf0..6c4035bb6aae63c0fd6ec9ddccc23d5017a67511 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -5781,6 +5781,23 @@ void V8::AddObjectGroup(Isolate* exported_isolate, |
} |
+void V8::SetObjectGroupId(Isolate* exported_isolate, |
+ const Persistent<Value>& object, |
+ UniqueId id) { |
+ i::Isolate* isolate = reinterpret_cast<i::Isolate*>(exported_isolate); |
+ isolate->global_handles()->SetObjectGroupId( |
+ reinterpret_cast<i::Object**>(*object), id); |
+} |
+ |
+ |
+void V8::SetRetainedObjectInfo(Isolate* exported_isolate, |
+ UniqueId id, |
+ RetainedObjectInfo* info) { |
+ i::Isolate* isolate = reinterpret_cast<i::Isolate*>(exported_isolate); |
+ isolate->global_handles()->SetRetainedObjectInfo(id, info); |
+} |
+ |
+ |
void V8::AddImplicitReferences(Persistent<Object> parent, |
Persistent<Value>* children, |
size_t length) { |