| 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 d5f2f47a4c786ed205e4271cc16b46a198996729..de1e2a36eee039eaa3de08600bdab827e2f8bcdd 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/ProfileTreeModel.js
|
| @@ -4,7 +4,7 @@
|
| /**
|
| * @unrestricted
|
| */
|
| -WebInspector.ProfileNode = class {
|
| +SDK.ProfileNode = class {
|
| /**
|
| * @param {!Protocol.Runtime.CallFrame} callFrame
|
| */
|
| @@ -19,9 +19,9 @@ WebInspector.ProfileNode = class {
|
| this.total = 0;
|
| /** @type {number} */
|
| this.id = 0;
|
| - /** @type {?WebInspector.ProfileNode} */
|
| + /** @type {?SDK.ProfileNode} */
|
| this.parent = null;
|
| - /** @type {!Array<!WebInspector.ProfileNode>} */
|
| + /** @type {!Array<!SDK.ProfileNode>} */
|
| this.children = [];
|
| }
|
|
|
| @@ -64,9 +64,9 @@ WebInspector.ProfileNode = class {
|
| /**
|
| * @unrestricted
|
| */
|
| -WebInspector.ProfileTreeModel = class {
|
| +SDK.ProfileTreeModel = class {
|
| /**
|
| - * @param {!WebInspector.ProfileNode} root
|
| + * @param {!SDK.ProfileNode} root
|
| * @protected
|
| */
|
| initialize(root) {
|
| @@ -99,7 +99,7 @@ WebInspector.ProfileTreeModel = class {
|
| }
|
|
|
| /**
|
| - * @param {!WebInspector.ProfileNode} root
|
| + * @param {!SDK.ProfileNode} root
|
| * @return {number}
|
| */
|
| _calculateTotals(root) {
|
|
|