[Basilisk] Issue #2 - Remove Safebrowsing and TrackingProtection from the FE

This resolves #2
This commit is contained in:
Moonchild 2021-10-18 16:19:08 +00:00 committed by roytam1
commit 6cefc52d32
36 changed files with 0 additions and 1389 deletions

View file

@ -198,8 +198,6 @@ var AboutPrivateBrowsingListener = {
init(chromeGlobal) {
chromeGlobal.addEventListener("AboutPrivateBrowsingOpenWindow", this,
false, true);
chromeGlobal.addEventListener("AboutPrivateBrowsingToggleTrackingProtection", this,
false, true);
},
get isAboutPrivateBrowsing() {
@ -214,9 +212,6 @@ var AboutPrivateBrowsingListener = {
case "AboutPrivateBrowsingOpenWindow":
sendAsyncMessage("AboutPrivateBrowsing:OpenPrivateWindow");
break;
case "AboutPrivateBrowsingToggleTrackingProtection":
sendAsyncMessage("AboutPrivateBrowsing:ToggleTrackingProtection");
break;
}
},
};