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

Unified Diff: Source/devtools/front_end/HeapSnapshotLoader.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/HeapSnapshotGridNodes.js ('k') | Source/devtools/front_end/HeapSnapshotProxy.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/HeapSnapshotLoader.js
diff --git a/Source/devtools/front_end/HeapSnapshotLoader.js b/Source/devtools/front_end/HeapSnapshotLoader.js
index 132886f0a26a6fbc4ab4b4e8f5bcf5307599c9b9..8285fa8ccf5f2cd96e53bed43dbf46c16d8e2616 100644
--- a/Source/devtools/front_end/HeapSnapshotLoader.js
+++ b/Source/devtools/front_end/HeapSnapshotLoader.js
@@ -58,12 +58,13 @@ WebInspector.HeapSnapshotLoader.prototype = {
},
/**
+ * @param {boolean} showHiddenData
* @return {!WebInspector.JSHeapSnapshot}
*/
- buildSnapshot: function(constructorName)
+ buildSnapshot: function(showHiddenData)
{
this._progress.updateStatus("Processing snapshot\u2026");
- var result = new WebInspector.JSHeapSnapshot(this._snapshot, this._progress);
+ var result = new WebInspector.JSHeapSnapshot(this._snapshot, this._progress, showHiddenData);
this._reset();
return result;
},
« no previous file with comments | « Source/devtools/front_end/HeapSnapshotGridNodes.js ('k') | Source/devtools/front_end/HeapSnapshotProxy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698