tor-browser

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

UrlClassifierFeaturePhishingProtection.h (1633B)


      1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
      2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
      3 /* This Source Code Form is subject to the terms of the Mozilla Public
      4 * License, v. 2.0. If a copy of the MPL was not distributed with this
      5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
      6 
      7 #ifndef mozilla_UrlClassifierFeaturePhishingProtection_h
      8 #define mozilla_UrlClassifierFeaturePhishingProtection_h
      9 
     10 #include "UrlClassifierFeatureBase.h"
     11 
     12 namespace mozilla {
     13 namespace net {
     14 
     15 class UrlClassifierFeaturePhishingProtection final
     16    : public UrlClassifierFeatureBase {
     17 public:
     18  struct PhishingProtectionFeature;
     19 
     20  static void GetFeatureNames(nsTArray<nsCString>& aArray);
     21 
     22  static void MaybeShutdown();
     23 
     24  static void MaybeCreate(nsTArray<RefPtr<nsIUrlClassifierFeature>>& aFeatures);
     25 
     26  static already_AddRefed<nsIUrlClassifierFeature> GetIfNameMatches(
     27      const nsACString& aName);
     28 
     29  NS_IMETHOD
     30  ProcessChannel(nsIChannel* aChannel, const nsTArray<nsCString>& aList,
     31                 const nsTArray<nsCString>& aHashes,
     32                 bool* aShouldContinue) override;
     33 
     34  NS_IMETHOD GetURIByListType(nsIChannel* aChannel,
     35                              nsIUrlClassifierFeature::listType aListType,
     36                              nsIUrlClassifierFeature::URIType* aURIType,
     37                              nsIURI** aURI) override;
     38 
     39 private:
     40  explicit UrlClassifierFeaturePhishingProtection(
     41      const PhishingProtectionFeature& aFeature);
     42 
     43  static void MaybeInitialize();
     44 };
     45 
     46 }  // namespace net
     47 }  // namespace mozilla
     48 
     49 #endif  // mozilla_UrlClassifierFeaturePhishingProtection_h