| 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;
|
| },
|
|
|