Index: src/api.cc |
diff --git a/src/api.cc b/src/api.cc |
index 52a84edfdabf6e797b3d87cd1b2786eb6bfdd5a2..b43aaf3260a6616e6207e574237a01011433ebd8 100644 |
--- a/src/api.cc |
+++ b/src/api.cc |
@@ -6045,13 +6045,6 @@ int HeapGraphNode::GetSelfSize() const { |
} |
-int HeapGraphNode::GetRetainedSize() const { |
- i::Isolate* isolate = i::Isolate::Current(); |
- IsDeadCheck(isolate, "v8::HeapSnapshot::GetRetainedSize"); |
- return ToInternal(this)->retained_size(); |
-} |
- |
- |
int HeapGraphNode::GetChildrenCount() const { |
i::Isolate* isolate = i::Isolate::Current(); |
IsDeadCheck(isolate, "v8::HeapSnapshot::GetChildrenCount"); |
@@ -6067,28 +6060,6 @@ const HeapGraphEdge* HeapGraphNode::GetChild(int index) const { |
} |
-int HeapGraphNode::GetRetainersCount() const { |
- i::Isolate* isolate = i::Isolate::Current(); |
- IsDeadCheck(isolate, "v8::HeapSnapshot::GetRetainersCount"); |
- return ToInternal(this)->retainers().length(); |
-} |
- |
- |
-const HeapGraphEdge* HeapGraphNode::GetRetainer(int index) const { |
- i::Isolate* isolate = i::Isolate::Current(); |
- IsDeadCheck(isolate, "v8::HeapSnapshot::GetRetainer"); |
- return reinterpret_cast<const HeapGraphEdge*>( |
- ToInternal(this)->retainers()[index]); |
-} |
- |
- |
-const HeapGraphNode* HeapGraphNode::GetDominatorNode() const { |
- i::Isolate* isolate = i::Isolate::Current(); |
- IsDeadCheck(isolate, "v8::HeapSnapshot::GetDominatorNode"); |
- return reinterpret_cast<const HeapGraphNode*>(ToInternal(this)->dominator()); |
-} |
- |
- |
v8::Handle<v8::Value> HeapGraphNode::GetHeapValue() const { |
i::Isolate* isolate = i::Isolate::Current(); |
IsDeadCheck(isolate, "v8::HeapGraphNode::GetHeapValue"); |