Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Unified Diff: third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js

Issue 2691433006: [Devtools] Persist network request blocking (Closed)
Patch Set: Merge branch 'ADD_ENABLE_DISABLE_REQUEST_BLOCKINg' into BLOCK_REQUESTS_IN_NETWORK_PERSISTANT Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 97566fcdfc6583f97280e3a449c688a736d737fc..0ebd4ac566bdf3347f26703e35ca4d0476e28baf 100644
--- a/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
+++ b/third_party/WebKit/Source/devtools/front_end/network/BlockedURLsPane.js
@@ -12,7 +12,7 @@ Network.BlockedURLsPane = class extends UI.VBox {
Network.BlockedURLsPane._instance = this;
- this._blockedURLsSetting = Common.moduleSetting('blockedURLs');
+ this._blockedURLsSetting = Common.moduleSetting('networkBlockedURLs');
this._blockedURLsSetting.addChangeListener(this._update, this);
this._toolbar = new UI.Toolbar('', this.contentElement);

Powered by Google App Engine
This is Rietveld 408576698