| Index: third_party/WebKit/Source/devtools/front_end/sdk/CPUProfileDataModel.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/sdk/CPUProfileDataModel.js b/third_party/WebKit/Source/devtools/front_end/sdk/CPUProfileDataModel.js
|
| index 1e4dafcc2d164f38658bfa78154a84cc71497363..cbafaa150e913a73afb0c735202d5e5d1d5b7b7d 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/sdk/CPUProfileDataModel.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/sdk/CPUProfileDataModel.js
|
| @@ -24,11 +24,11 @@ WebInspector.CPUProfileNode = function(node, sampleTime)
|
| this.positionTicks = node.positionTicks;
|
| // Compatibility: legacy backends could provide "no reason" for optimized functions.
|
| this.deoptReason = node.deoptReason && node.deoptReason !== "no reason" ? node.deoptReason : null;
|
| -}
|
| +};
|
|
|
| WebInspector.CPUProfileNode.prototype = {
|
| __proto__: WebInspector.ProfileNode.prototype
|
| -}
|
| +};
|
|
|
| /**
|
| * @constructor
|
| @@ -60,7 +60,7 @@ WebInspector.CPUProfileDataModel = function(profile)
|
| this._sortSamples();
|
| this._normalizeTimestamps();
|
| }
|
| -}
|
| +};
|
|
|
| WebInspector.CPUProfileDataModel.prototype = {
|
| /**
|
| @@ -374,4 +374,4 @@ WebInspector.CPUProfileDataModel.prototype = {
|
| },
|
|
|
| __proto__: WebInspector.ProfileTreeModel.prototype
|
| -}
|
| +};
|
|
|