| Index: Source/devtools/front_end/profiler/CPUProfileView.js
|
| diff --git a/Source/devtools/front_end/profiler/CPUProfileView.js b/Source/devtools/front_end/profiler/CPUProfileView.js
|
| index 3d77d202a9c1339462020c3aea5423361b7c34c7..3bd7c53e465df21db2ee0d3593b1521dfdf0df43 100644
|
| --- a/Source/devtools/front_end/profiler/CPUProfileView.js
|
| +++ b/Source/devtools/front_end/profiler/CPUProfileView.js
|
| @@ -360,7 +360,7 @@ WebInspector.CPUProfileView.prototype = {
|
| {
|
| if (this._flameChart)
|
| return;
|
| - this._dataProvider = new WebInspector.CPUFlameChartDataProvider(this.profile, this._profileHeader.target());
|
| + this._dataProvider = new WebInspector.CPUFlameChartDataProvider(this.profile, this._profileHeader.weakTarget());
|
| this._flameChart = new WebInspector.CPUProfileFlameChart(this._dataProvider);
|
| this._flameChart.addEventListener(WebInspector.FlameChart.Events.EntrySelected, this._onEntrySelected.bind(this));
|
| },
|
|
|