| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
|
| index 10beb24e9b87194b2b2098c1630b6a523459a19a..e07c2ac5fbe21ceba04574d2c49c3cbe0ac5952e 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkDataGridNode.js
|
| @@ -361,9 +361,9 @@
|
| /** @type {?Element} */
|
| this._nameCell = null;
|
| /** @type {?Element} */
|
| - this._nameBadgeElement = null;
|
| + this._initiatorCell = null;
|
| /** @type {?Element} */
|
| - this._initiatorCell = null;
|
| + this._linkifiedInitiatorAnchor = null;
|
| this._request = request;
|
| this._isNavigationRequest = false;
|
| this.selectable = true;
|
| @@ -933,9 +933,6 @@
|
| iconElement.classList.add(this._request.resourceType().name());
|
|
|
| cell.appendChild(iconElement);
|
| - if (!this._nameBadgeElement)
|
| - this._nameBadgeElement = this.parentView().badgePool.badgeForURL(this._request.parsedURL);
|
| - cell.appendChild(this._nameBadgeElement);
|
| cell.createTextChild(this._request.networkManager().target().decorateLabel(this._request.name()));
|
| this._appendSubtitle(cell, this._request.path());
|
| cell.title = this._request.url();
|
|
|