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

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

Issue 222443003: DevTools: Treat system object distances with less priority (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Addressing comments. 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/HeapSnapshotGridNodes.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/devtools/front_end/HeapSnapshotCommon.js
diff --git a/Source/devtools/front_end/HeapSnapshotCommon.js b/Source/devtools/front_end/HeapSnapshotCommon.js
index b99619ae6d68577be518f17ce9db490709e717df..382abf1a71395e5b44f4a4ed7423ca253ac087ff 100644
--- a/Source/devtools/front_end/HeapSnapshotCommon.js
+++ b/Source/devtools/front_end/HeapSnapshotCommon.js
@@ -35,6 +35,8 @@ WebInspector.HeapSnapshotProgressEvent = {
WebInspector.HeapSnapshotCommon = {
}
+WebInspector.HeapSnapshotCommon.baseSystemDistance = 100000000;
yurys 2014/04/03 09:34:21 heapRootDistance
+
/**
* @param {!Array.<!WebInspector.HeapSnapshotCommon.SerializedAllocationNode>} nodesWithSingleCaller
* @param {!Array.<!WebInspector.HeapSnapshotCommon.SerializedAllocationNode>} branchingCallers
@@ -280,4 +282,4 @@ WebInspector.HeapSnapshotCommon.NodeFilter.prototype =
{
return this.minNodeId === o.minNodeId && this.maxNodeId === o.maxNodeId && this.allocationNodeId === o.allocationNodeId;
}
-}
+}
« no previous file with comments | « Source/devtools/front_end/HeapSnapshot.js ('k') | Source/devtools/front_end/HeapSnapshotGridNodes.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698