Index: Source/devtools/front_end/HeapSnapshotGridNodes.js |
diff --git a/Source/devtools/front_end/HeapSnapshotGridNodes.js b/Source/devtools/front_end/HeapSnapshotGridNodes.js |
index ca58e78fd713274204f30b64ca70e4477a4157af..2bf39326753fa9b8ae906365cbd09e3f8785d9a8 100644 |
--- a/Source/devtools/front_end/HeapSnapshotGridNodes.js |
+++ b/Source/devtools/front_end/HeapSnapshotGridNodes.js |
@@ -708,11 +708,10 @@ WebInspector.HeapSnapshotObjectNode.prototype = { |
createProvider: function() |
{ |
var tree = this._dataGrid; |
- var showHiddenData = WebInspector.settings.showAdvancedHeapSnapshotProperties.get(); |
if (this.showRetainingEdges) |
- return this._snapshot.createRetainingEdgesProvider(this.snapshotNodeIndex, showHiddenData); |
+ return this._snapshot.createRetainingEdgesProvider(this.snapshotNodeIndex); |
else |
- return this._snapshot.createEdgesProvider(this.snapshotNodeIndex, showHiddenData); |
+ return this._snapshot.createEdgesProvider(this.snapshotNodeIndex); |
}, |
_findAncestorWithSameSnapshotNodeId: function() |
@@ -841,10 +840,7 @@ WebInspector.HeapSnapshotInstanceNode.prototype = { |
*/ |
createProvider: function() |
{ |
- var showHiddenData = WebInspector.settings.showAdvancedHeapSnapshotProperties.get(); |
- return this._baseSnapshotOrSnapshot.createEdgesProvider( |
- this.snapshotNodeIndex, |
- showHiddenData); |
+ return this._baseSnapshotOrSnapshot.createEdgesProvider(this.snapshotNodeIndex); |
}, |
_createChildNode: function(item) |