| Index: third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| diff --git a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| index b7d5eef22f5f0721165b6eb559010c3cb8bcba3e..4acfc1b01a12303dcf82056c1037b2bb360f7b64 100644
|
| --- a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| +++ b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
|
| @@ -24,6 +24,9 @@ Network.BlockedURLsPane = class extends UI.VBox {
|
| clearButton.addEventListener(UI.ToolbarButton.Events.Click, this._removeAll, this);
|
| this._toolbar.appendToolbarItem(clearButton);
|
|
|
| + var enableRequestBlockingCheckbox = new UI.ToolbarSettingCheckbox(Common.moduleSetting('requestBlockingEnabled'));
|
| + this._toolbar.appendToolbarItem(enableRequestBlockingCheckbox);
|
| +
|
| this._emptyElement = this.contentElement.createChild('div', 'no-blocked-urls');
|
| this._emptyElement.createChild('span').textContent = Common.UIString('Requests are not blocked. ');
|
| var addLink = this._emptyElement.createChild('span', 'link');
|
|
|