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

Unified Diff: third_party/WebKit/Source/devtools/front_end/main/Main.js

Issue 2688983002: [Devtools] Added context menus for removing request blocking in network (Closed)
Patch Set: fix test 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/main/Main.js
diff --git a/third_party/WebKit/Source/devtools/front_end/main/Main.js b/third_party/WebKit/Source/devtools/front_end/main/Main.js
index 5ba641dd25c941a8cb67763e814a84351bb65c33..bf3bcd32954587aa9e8c59a0e96fb306c5d285b6 100644
--- a/third_party/WebKit/Source/devtools/front_end/main/Main.js
+++ b/third_party/WebKit/Source/devtools/front_end/main/Main.js
@@ -755,7 +755,7 @@ Main.NetworkPanelIndicator = class {
return;
var manager = SDK.multitargetNetworkManager;
manager.addEventListener(SDK.MultitargetNetworkManager.Events.ConditionsChanged, updateVisibility);
- var blockedURLsSetting = Common.moduleSetting('blockedURLs');
+ var blockedURLsSetting = Common.moduleSetting('networkBlockedURLs');
blockedURLsSetting.addChangeListener(updateVisibility);
updateVisibility();

Powered by Google App Engine
This is Rietveld 408576698