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..1a6d3dfb81585f00ce6e693072f23e4bd8b9edd1 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 {?Promise<!Element>} |
*/ |
prepareHighlightedEntryInfo: function(entryIndex) |
{ |
@@ -433,7 +433,7 @@ WebInspector.HeapFlameChartDataProvider.prototype = { |
if (link) |
pushEntryInfoRow(WebInspector.UIString("URL"), link.textContent); |
linkifier.dispose(); |
- return entryInfo; |
+ return Promise.resolve(WebInspector.ProfileView.buildPopoverTable(entryInfo)); |
}, |
__proto__: WebInspector.ProfileFlameChartDataProvider.prototype |