Bug 1874684 - Part 13: Pass DateDuration to AddDate/CalendarDateAdd. r=sfink
[gecko.git] / netwerk / url-classifier / UrlClassifierFeaturePhishingProtection.h
blobd5498cbb720cdd746c7ff5503987b39f195add71
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_UrlClassifierFeaturePhishingProtection_h
8 #define mozilla_UrlClassifierFeaturePhishingProtection_h
10 #include "UrlClassifierFeatureBase.h"
12 namespace mozilla {
13 namespace net {
15 class UrlClassifierFeaturePhishingProtection final
16 : public UrlClassifierFeatureBase {
17 public:
18 struct PhishingProtectionFeature;
20 static void GetFeatureNames(nsTArray<nsCString>& aArray);
22 static void MaybeShutdown();
24 static void MaybeCreate(nsTArray<RefPtr<nsIUrlClassifierFeature>>& aFeatures);
26 static already_AddRefed<nsIUrlClassifierFeature> GetIfNameMatches(
27 const nsACString& aName);
29 NS_IMETHOD
30 ProcessChannel(nsIChannel* aChannel, 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 explicit UrlClassifierFeaturePhishingProtection(
41 const PhishingProtectionFeature& aFeature);
43 static void MaybeInitialize();
46 } // namespace net
47 } // namespace mozilla
49 #endif // mozilla_UrlClassifierFeaturePhishingProtection_h