Bug 1874684 - Part 13: Pass DateDuration to AddDate/CalendarDateAdd. r=sfink
[gecko.git] / netwerk / url-classifier / UrlClassifierFeatureEmailTrackingProtection.h
blob812a60f25536e16d7b9802ab1ac037f2a9c82569
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/. */
7 #ifndef mozilla_net_UrlClassifierFeatureEmailTrackingProtection_h
8 #define mozilla_net_UrlClassifierFeatureEmailTrackingProtection_h
10 #include "UrlClassifierFeatureBase.h"
12 class nsIChannel;
14 namespace mozilla::net {
16 class UrlClassifierFeatureEmailTrackingProtection final
17 : public UrlClassifierFeatureAntiTrackingBase {
18 public:
19 static const char* Name();
21 static void MaybeShutdown();
23 static already_AddRefed<UrlClassifierFeatureEmailTrackingProtection>
24 MaybeCreate(nsIChannel* aChannel);
26 static already_AddRefed<nsIUrlClassifierFeature> GetIfNameMatches(
27 const nsACString& aName);
29 NS_IMETHOD ProcessChannel(nsIChannel* aChannel,
30 const nsTArray<nsCString>& aList,
31 const nsTArray<nsCString>& aHashes,
32 bool* aShouldContinue) override;
34 NS_IMETHOD GetURIByListType(nsIChannel* aChannel,
35 nsIUrlClassifierFeature::listType aListType,
36 nsIUrlClassifierFeature::URIType* aURIType,
37 nsIURI** aURI) override;
39 private:
40 UrlClassifierFeatureEmailTrackingProtection();
42 static void MaybeInitialize();
45 } // namespace mozilla::net
47 #endif // mozilla_net_UrlClassifierFeatureEmailTrackingProtection_h