Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / netwerk / url-classifier / UrlClassifierFeatureCustomTables.h
blob0fc12243fe7de5d1ef803f9f626cbd1d747d2d81
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_UrlClassifierFeatureCustomTables_h
8 #define mozilla_UrlClassifierFeatureCustomTables_h
10 #include "nsIUrlClassifierFeature.h"
11 #include "nsTArray.h"
12 #include "nsString.h"
14 namespace mozilla {
16 class UrlClassifierFeatureCustomTables : public nsIUrlClassifierFeature {
17 public:
18 NS_DECL_ISUPPORTS
19 NS_DECL_NSIURLCLASSIFIERFEATURE
21 explicit UrlClassifierFeatureCustomTables(
22 const nsACString& aName, const nsTArray<nsCString>& aBlocklistTables,
23 const nsTArray<nsCString>& aEntitylistTables);
25 private:
26 virtual ~UrlClassifierFeatureCustomTables();
28 nsCString mName;
29 nsTArray<nsCString> mBlocklistTables;
30 nsTArray<nsCString> mEntitylistTables;
33 } // namespace mozilla
35 #endif // mozilla_UrlClassifierFeatureCustomTables_h