Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1669)

Unified Diff: Source/devtools/front_end/timeline/TimelineUIUtilsImpl.js

Issue 448743002: DevTools: Linkify console stacks with blackboxing consideration. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/devtools/front_end/timeline/TimelineUIUtilsImpl.js
diff --git a/Source/devtools/front_end/timeline/TimelineUIUtilsImpl.js b/Source/devtools/front_end/timeline/TimelineUIUtilsImpl.js
index 99c55d117deca9df553e7d090798dacf9dd7543d..367b1fb712c5532fc4c9997c1cdf081bebbf234a 100644
--- a/Source/devtools/front_end/timeline/TimelineUIUtilsImpl.js
+++ b/Source/devtools/front_end/timeline/TimelineUIUtilsImpl.js
@@ -419,9 +419,9 @@ WebInspector.TimelineUIUtilsImpl.buildDetailsNode = function(record, linkifier)
function linkifyTopCallFrame()
{
if (record.stackTrace())
- return linkifier.linkifyConsoleCallFrame(record.target(), record.stackTrace()[0], "timeline-details");
+ return linkifier.linkifyTopUnblackboxedConsoleCallFrame(record.target(), record.stackTrace(), "timeline-details");
if (record.callSiteStackTrace())
- return linkifier.linkifyConsoleCallFrame(record.target(), record.callSiteStackTrace()[0], "timeline-details");
+ return linkifier.linkifyTopUnblackboxedConsoleCallFrame(record.target(), record.callSiteStackTrace(), "timeline-details");
return null;
}
}

Powered by Google App Engine
This is Rietveld 408576698