Chromium Code Reviews| Index: Source/devtools/front_end/TimelineView.js |
| diff --git a/Source/devtools/front_end/TimelineView.js b/Source/devtools/front_end/TimelineView.js |
| index 610826884a6ce47264bf29b5b312153643a6452b..7a84dd28a0bc675f612128b59d1c55adf259278c 100644 |
| --- a/Source/devtools/front_end/TimelineView.js |
| +++ b/Source/devtools/front_end/TimelineView.js |
| @@ -803,7 +803,7 @@ WebInspector.TimelineView.prototype = { |
| popover.show(WebInspector.TimelineUIUtils.generatePopupContentForFrame(frame), anchor); |
| } else { |
| if (anchor.row && anchor.row._record) |
| - anchor.row._record.generatePopupContent(anchor.row._record, this._linkifier, showCallback); |
| + WebInspector.TimelineUIUtils.generatePopupContent.generatePopupContent(anchor.row._record, this._linkifier, showCallback); |
|
caseq
2014/03/03 09:15:35
ditto
pfeldman
2014/03/03 09:35:33
Done.
|
| else if (anchor._tasksInfo) |
| popover.show(WebInspector.TimelineUIUtils.generateMainThreadBarPopupContent(this._model, anchor._tasksInfo), anchor, null, null, WebInspector.Popover.Orientation.Bottom); |
| } |
| @@ -1030,7 +1030,7 @@ WebInspector.TimelineRecordListRow.prototype = { |
| this._warningElement.enableStyleClass("hidden", !record.hasWarnings() && !record.childHasWarnings()); |
| this._warningElement.enableStyleClass("timeline-tree-item-child-warning", record.childHasWarnings() && !record.hasWarnings()); |
| - var detailsNode = record.buildDetailsNode(record, this._linkifier); |
| + var detailsNode = WebInspector.TimelineUIUtils.buildDetailsNode(record, this._linkifier); |
| if (detailsNode) { |
| this._dataElement.appendChild(document.createTextNode("(")); |
| this._dataElement.appendChild(detailsNode); |