| 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..d5ad3fa6a1e2afeb675f9e38d8916f49aa159ae9 100644
|
| --- a/Source/devtools/front_end/HeapSnapshotCommon.js
|
| +++ b/Source/devtools/front_end/HeapSnapshotCommon.js
|
| @@ -221,9 +221,10 @@ WebInspector.HeapSnapshotCommon.ItemsRange = function(startPosition, endPosition
|
| * @param {number} rootNodeIndex
|
| * @param {number} totalSize
|
| * @param {number} maxJSObjectId
|
| + * @param {number} baseSystemDistance
|
| * @constructor
|
| */
|
| -WebInspector.HeapSnapshotCommon.StaticData = function(nodeCount, rootNodeIndex, totalSize, maxJSObjectId)
|
| +WebInspector.HeapSnapshotCommon.StaticData = function(nodeCount, rootNodeIndex, totalSize, maxJSObjectId, baseSystemDistance)
|
| {
|
| /** @type {number} */
|
| this.nodeCount = nodeCount;
|
| @@ -233,6 +234,8 @@ WebInspector.HeapSnapshotCommon.StaticData = function(nodeCount, rootNodeIndex,
|
| this.totalSize = totalSize;
|
| /** @type {number} */
|
| this.maxJSObjectId = maxJSObjectId;
|
| + /** @type {number} */
|
| + this.baseSystemDistance = baseSystemDistance;
|
| }
|
|
|
| /**
|
| @@ -280,4 +283,4 @@ WebInspector.HeapSnapshotCommon.NodeFilter.prototype =
|
| {
|
| return this.minNodeId === o.minNodeId && this.maxNodeId === o.maxNodeId && this.allocationNodeId === o.allocationNodeId;
|
| }
|
| -}
|
| +}
|
|
|