Index: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js |
index 2d14c707f3d774197435516f8ce9e06d78ad8697..637394a07ec81b146ca13d2b54f49e9aa025c728 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js |
+++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js |
@@ -58,13 +58,12 @@ WebInspector.HeapSnapshotLoader.prototype = { |
}, |
/** |
- * @param {boolean} showHiddenData |
* @return {!WebInspector.JSHeapSnapshot} |
*/ |
- buildSnapshot: function(showHiddenData) |
+ buildSnapshot: function() |
{ |
this._progress.updateStatus("Processing snapshot\u2026"); |
- var result = new WebInspector.JSHeapSnapshot(this._snapshot, this._progress, showHiddenData); |
+ var result = new WebInspector.JSHeapSnapshot(this._snapshot, this._progress); |
this._reset(); |
return result; |
}, |