| Index: third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
|
| index b8206f4e4d0e159a5fd14aacbc9ba1a4d0edfb64..d902882d9bd696d154468c379171975a623181cf 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
|
| @@ -22,7 +22,7 @@ WebInspector.ProfileNode = function(callFrame)
|
| this.parent = null;
|
| /** @type {!Array<!WebInspector.ProfileNode>} */
|
| this.children = [];
|
| -}
|
| +};
|
|
|
| WebInspector.ProfileNode.prototype = {
|
| /**
|
| @@ -64,7 +64,7 @@ WebInspector.ProfileNode.prototype = {
|
| {
|
| return this.callFrame.columnNumber;
|
| }
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -75,7 +75,7 @@ WebInspector.ProfileTreeModel = function(root)
|
| this.root = root;
|
| this._assignDepthsAndParents();
|
| this.total = this._calculateTotals(this.root);
|
| -}
|
| +};
|
|
|
| WebInspector.ProfileTreeModel.prototype = {
|
| _assignDepthsAndParents: function()
|
| @@ -122,4 +122,4 @@ WebInspector.ProfileTreeModel.prototype = {
|
| }
|
| return root.total;
|
| }
|
| -}
|
| +};
|
|
|