| Index: third_party/WebKit/Source/devtools/front_end/network/NetworkManageCustomHeadersView.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/NetworkManageCustomHeadersView.js b/third_party/WebKit/Source/devtools/front_end/network/NetworkManageCustomHeadersView.js
|
| index a85253b10a107091ca4221b15e3a7429b615c79e..b46f0c1deeaf24efe248ef23f4225e134589854c 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/NetworkManageCustomHeadersView.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/NetworkManageCustomHeadersView.js
|
| @@ -29,8 +29,8 @@ Network.NetworkManageCustomHeadersView = class extends UI.VBox {
|
| placeholder.textContent = Common.UIString('No custom headers');
|
| this._list.setEmptyPlaceholder(placeholder);
|
| this._list.show(this.contentElement);
|
| - this.contentElement.appendChild(
|
| - createTextButton(Common.UIString('Add custom header\u2026'), this._addButtonClicked.bind(this), 'add-button'));
|
| + this.contentElement.appendChild(UI.createTextButton(
|
| + Common.UIString('Add custom header\u2026'), this._addButtonClicked.bind(this), 'add-button'));
|
|
|
| /** @type {!Map.<string, !{title: string, editable: boolean}>} */
|
| this._columnConfigs = new Map();
|
|
|