tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit d6a3a654e47ead3ff2543f44aba87fb395c9981c
parent 1dfcfb33ff21df577004c49b280bd82da17a1565
Author: Lando <lando@lando.test>
Date:   Thu,  4 Dec 2025 01:27:15 +0000

Bug 1986320: apply code formatting via Lando

# ignore-this-changeset

Diffstat:
Mnetwerk/url-classifier/UrlClassifierCommon.cpp | 3++-
Mnetwerk/url-classifier/UrlClassifierFeatureFactory.cpp | 3+--
2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/netwerk/url-classifier/UrlClassifierCommon.cpp b/netwerk/url-classifier/UrlClassifierCommon.cpp @@ -57,7 +57,8 @@ bool UrlClassifierCommon::AddonMayLoad(nsIChannel* aChannel, nsIURI* aURI) { } /* static */ -bool UrlClassifierCommon::ShouldEnableProtectionForChannel(nsIChannel* aChannel) { +bool UrlClassifierCommon::ShouldEnableProtectionForChannel( + nsIChannel* aChannel) { MOZ_ASSERT(aChannel); nsCOMPtr<nsIURI> chanURI; diff --git a/netwerk/url-classifier/UrlClassifierFeatureFactory.cpp b/netwerk/url-classifier/UrlClassifierFeatureFactory.cpp @@ -254,8 +254,7 @@ UrlClassifierFeatureFactory::GetFeatureByName(const nsACString& aName) { } // Addon Protection - feature = - UrlClassifierFeatureHarmfulAddonProtection::GetIfNameMatches(aName); + feature = UrlClassifierFeatureHarmfulAddonProtection::GetIfNameMatches(aName); if (feature) { return feature.forget(); }