| Index: src/api.cc
|
| diff --git a/src/api.cc b/src/api.cc
|
| index a9e01e0f8e6ecbd9c4770496838bfb9c30300cc7..dddcd7dcf502bb3f3216763b9477dcf724a0299f 100644
|
| --- a/src/api.cc
|
| +++ b/src/api.cc
|
| @@ -5925,34 +5925,6 @@ 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::SetObjectGroupRepresentative(
|
| - Isolate* exported_isolate,
|
| - UniqueId id,
|
| - const Persistent<Object>& object) {
|
| - i::Isolate* isolate = reinterpret_cast<i::Isolate*>(exported_isolate);
|
| - isolate->global_handles()->SetObjectGroupRepresentative(
|
| - id,
|
| - i::Handle<i::HeapObject>::cast(Utils::OpenHandle(*object)).location());
|
| -}
|
| -
|
| -
|
| void V8::AddImplicitReferences(Persistent<Object> parent,
|
| Persistent<Value>* children,
|
| size_t length) {
|
| @@ -5965,15 +5937,6 @@ void V8::AddImplicitReferences(Persistent<Object> parent,
|
| }
|
|
|
|
|
| -void V8::AddImplicitReference(Isolate* exported_isolate,
|
| - UniqueId id,
|
| - const Persistent<Value>& object) {
|
| - i::Isolate* isolate = reinterpret_cast<i::Isolate*>(exported_isolate);
|
| - isolate->global_handles()
|
| - ->AddImplicitReference(id, reinterpret_cast<i::Object**>(*object));
|
| -}
|
| -
|
| -
|
| intptr_t Isolate::AdjustAmountOfExternalAllocatedMemory(
|
| intptr_t change_in_bytes) {
|
| i::Heap* heap = reinterpret_cast<i::Isolate*>(this)->heap();
|
|
|