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

Unified Diff: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/HeapSnapshotLoader.js

Issue 2188413004: DevTools: Remove Advanced heap snapshot properties setting. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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
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;
},

Powered by Google App Engine
This is Rietveld 408576698