| Index: Source/devtools/front_end/HeapSnapshotGridNodes.js
|
| diff --git a/Source/devtools/front_end/HeapSnapshotGridNodes.js b/Source/devtools/front_end/HeapSnapshotGridNodes.js
|
| index f1e5592ac653dd26248472554393f904fff738d7..af018a08b42e432d8edc54f2bc3b9d32a312e04e 100644
|
| --- a/Source/devtools/front_end/HeapSnapshotGridNodes.js
|
| +++ b/Source/devtools/front_end/HeapSnapshotGridNodes.js
|
| @@ -684,12 +684,11 @@ WebInspector.HeapSnapshotObjectNode.prototype = {
|
| createProvider: function()
|
| {
|
| var tree = this._dataGrid;
|
| - var showHiddenData = WebInspector.settings.showAdvancedHeapSnapshotProperties.get();
|
| var snapshot = this._isFromBaseSnapshot ? tree.baseSnapshot : tree.snapshot;
|
| if (this.showRetainingEdges)
|
| - return snapshot.createRetainingEdgesProvider(this.snapshotNodeIndex, showHiddenData);
|
| + return snapshot.createRetainingEdgesProvider(this.snapshotNodeIndex);
|
| else
|
| - return snapshot.createEdgesProvider(this.snapshotNodeIndex, showHiddenData);
|
| + return snapshot.createEdgesProvider(this.snapshotNodeIndex);
|
| },
|
|
|
| _findAncestorWithSameSnapshotNodeId: function()
|
| @@ -803,10 +802,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)
|
|
|