| 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 3cdab5a056733b454fd6a3a94989c806a569a018..e06aef704002c54051240086825acccf5eca02ae 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/CPUProfileView.js
|
| @@ -448,7 +448,7 @@ WebInspector.CPUFlameChartDataProvider.prototype = {
|
| /**
|
| * @override
|
| * @param {number} entryIndex
|
| - * @return {?Array<!{title: string, value: (string|!Element)}>}
|
| + * @return {?Element}
|
| */
|
| prepareHighlightedEntryInfo: function(entryIndex)
|
| {
|
| @@ -494,7 +494,7 @@ WebInspector.CPUFlameChartDataProvider.prototype = {
|
| if (node.deoptReason)
|
| pushEntryInfoRow(WebInspector.UIString("Not optimized"), node.deoptReason);
|
|
|
| - return entryInfo;
|
| + return WebInspector.ProfileView.buildPopoverTable(entryInfo);
|
| },
|
|
|
| __proto__: WebInspector.ProfileFlameChartDataProvider.prototype
|
|
|