| Index: third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js
|
| index 0dfc4e73899eccb809a7c5981043e73882e51e78..532ff6781d71879c0ec0773a0803deb96a9264b3 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/heap_snapshot_worker/AllocationProfile.js
|
| @@ -46,7 +46,7 @@ WebInspector.AllocationProfile = function(profile, liveObjectStats)
|
|
|
| this._buildFunctionAllocationInfos(profile);
|
| this._traceTree = this._buildAllocationTree(profile, liveObjectStats);
|
| -}
|
| +};
|
|
|
| WebInspector.AllocationProfile.prototype = {
|
| _buildFunctionAllocationInfos: function(profile)
|
| @@ -260,7 +260,7 @@ WebInspector.AllocationProfile.prototype = {
|
| hasChildren
|
| );
|
| }
|
| -}
|
| +};
|
|
|
|
|
| /**
|
| @@ -283,7 +283,7 @@ WebInspector.TopDownAllocationNode = function(id, functionInfo, count, size, liv
|
| this.liveSize = liveSize;
|
| this.parent = parent;
|
| this.children = [];
|
| -}
|
| +};
|
|
|
|
|
| /**
|
| @@ -299,7 +299,7 @@ WebInspector.BottomUpAllocationNode = function(functionInfo)
|
| this.liveSize = 0;
|
| this.traceTopIds = [];
|
| this._callers = [];
|
| -}
|
| +};
|
|
|
|
|
| WebInspector.BottomUpAllocationNode.prototype = {
|
| @@ -340,7 +340,7 @@ WebInspector.BottomUpAllocationNode.prototype = {
|
| {
|
| return this._callers.length > 0;
|
| }
|
| -}
|
| +};
|
|
|
|
|
| /**
|
| @@ -363,7 +363,7 @@ WebInspector.FunctionAllocationInfo = function(functionName, scriptName, scriptI
|
| this.totalLiveCount = 0;
|
| this.totalLiveSize = 0;
|
| this._traceTops = [];
|
| -}
|
| +};
|
|
|
| WebInspector.FunctionAllocationInfo.prototype = {
|
| /**
|
| @@ -418,4 +418,4 @@ WebInspector.FunctionAllocationInfo.prototype = {
|
| }
|
| }
|
| }
|
| -}
|
| +};
|
|
|