tor-browser

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

UrlClassifierFeatureEmailTrackingProtection.h (1625B)


      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_net_UrlClassifierFeatureEmailTrackingProtection_h
      8 #define mozilla_net_UrlClassifierFeatureEmailTrackingProtection_h
      9 
     10 #include "UrlClassifierFeatureBase.h"
     11 
     12 class nsIChannel;
     13 
     14 namespace mozilla::net {
     15 
     16 class UrlClassifierFeatureEmailTrackingProtection final
     17    : public UrlClassifierFeatureAntiTrackingBase {
     18 public:
     19  static const char* Name();
     20 
     21  static void MaybeShutdown();
     22 
     23  static already_AddRefed<UrlClassifierFeatureEmailTrackingProtection>
     24  MaybeCreate(nsIChannel* aChannel);
     25 
     26  static already_AddRefed<nsIUrlClassifierFeature> GetIfNameMatches(
     27      const nsACString& aName);
     28 
     29  NS_IMETHOD ProcessChannel(nsIChannel* aChannel,
     30                            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  UrlClassifierFeatureEmailTrackingProtection();
     41 
     42  static void MaybeInitialize();
     43 };
     44 
     45 }  // namespace mozilla::net
     46 
     47 #endif  // mozilla_net_UrlClassifierFeatureEmailTrackingProtection_h