| Index: third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| index 91f2cf2bfca88476051cd797619d8413946e93d9..7adcc93e91bbf142b65395c0366cd990e6b6c51a 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| @@ -31,11 +31,12 @@
|
| */
|
| WebInspector.CPUProfileView = function(profileHeader)
|
| {
|
| + WebInspector.ProfileView.call(this);
|
| this._profileHeader = profileHeader;
|
| this.profile = new WebInspector.CPUProfileDataModel(profileHeader._profile || profileHeader.protocolProfile());
|
| this.adjustedTotal = this.profile.profileHead.total;
|
| this.adjustedTotal -= this.profile.idleNode ? this.profile.idleNode.total : 0;
|
| - WebInspector.ProfileView.call(this, new WebInspector.CPUProfileView.NodeFormatter(this));
|
| + this.initialize(new WebInspector.CPUProfileView.NodeFormatter(this));
|
| };
|
|
|
| WebInspector.CPUProfileView.prototype = {
|
|
|