| Index: third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| index 7bd41ee54faafbe3f6a561c5a50c21b98857377c..b95dc216a6838b77c0fc41cf3c271a9e54fdf790 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/profiler/HeapProfileView.js
|
| @@ -409,7 +409,7 @@ WebInspector.HeapFlameChartDataProvider.prototype = {
|
| /**
|
| * @override
|
| * @param {number} entryIndex
|
| - * @return {?Array<!{title: string, value: (string|!Element)}>}
|
| + * @return {?Element}
|
| */
|
| prepareHighlightedEntryInfo: function(entryIndex)
|
| {
|
| @@ -433,7 +433,7 @@ WebInspector.HeapFlameChartDataProvider.prototype = {
|
| if (link)
|
| pushEntryInfoRow(WebInspector.UIString("URL"), link.textContent);
|
| linkifier.dispose();
|
| - return entryInfo;
|
| + return WebInspector.ProfileView.buildPopoverTable(entryInfo);
|
| },
|
|
|
| __proto__: WebInspector.ProfileFlameChartDataProvider.prototype
|
|
|