Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(747)

Unified Diff: Source/devtools/front_end/HeapSnapshotGridNodes.js

Issue 212773005: DevTools: Show all objects in class view in advanced heap snapshot mode. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebaseline Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/devtools/front_end/HeapSnapshot.js ('k') | Source/devtools/front_end/HeapSnapshotLoader.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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)
« no previous file with comments | « Source/devtools/front_end/HeapSnapshot.js ('k') | Source/devtools/front_end/HeapSnapshotLoader.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698