| Index: third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| index d374d3cd8f6b1b788cdac9f639ce42f9cd1ddc31..b8a51e4b0ea1dfa023f935c48bd5d31bccb4ca50 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/timeline/TimelineUIUtils.js
|
| @@ -619,7 +619,7 @@ WebInspector.TimelineUIUtils.buildDetailsNodeForTraceEvent = function(event, tar
|
| function linkifyTopCallFrame()
|
| {
|
| var frame = WebInspector.TimelineUIUtils.topStackFrame(event);
|
| - return frame ? linkifier.linkifyConsoleCallFrame(target, frame, "timeline-details") : null;
|
| + return frame ? linkifier.linkifyConsoleCallFrameForTimeline(target, frame, "timeline-details") : null;
|
| }
|
| }
|
|
|
| @@ -996,7 +996,7 @@ WebInspector.TimelineUIUtils.buildNetworkRequestDetails = function(request, mode
|
| var sendRequest = request.children[0];
|
| var topFrame = WebInspector.TimelineUIUtils.topStackFrame(sendRequest);
|
| if (topFrame) {
|
| - contentHelper.appendElementRow(title, linkifier.linkifyConsoleCallFrame(target, topFrame));
|
| + contentHelper.appendElementRow(title, linkifier.linkifyConsoleCallFrameForTimeline(target, topFrame));
|
| } else if (sendRequest.initiator) {
|
| var initiatorURL = WebInspector.TimelineUIUtils.eventURL(sendRequest.initiator);
|
| if (initiatorURL)
|
| @@ -1241,7 +1241,7 @@ WebInspector.TimelineUIUtils.InvalidationsGroupElement.prototype = {
|
| var stack = title.createChild("span", "monospace");
|
| stack.createChild("span").textContent = WebInspector.beautifyFunctionName(topFrame.functionName);
|
| stack.createChild("span").textContent = " @ ";
|
| - stack.createChild("span").appendChild(this._contentHelper.linkifier().linkifyConsoleCallFrame(target, topFrame));
|
| + stack.createChild("span").appendChild(this._contentHelper.linkifier().linkifyConsoleCallFrameForTimeline(target, topFrame));
|
| }
|
|
|
| return title;
|
|
|