tor-browser

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

UrlClassifierFeatureCustomTables.h (1087B)


      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_UrlClassifierFeatureCustomTables_h
      8 #define mozilla_UrlClassifierFeatureCustomTables_h
      9 
     10 #include "nsIUrlClassifierFeature.h"
     11 #include "nsTArray.h"
     12 #include "nsString.h"
     13 
     14 namespace mozilla {
     15 
     16 class UrlClassifierFeatureCustomTables : public nsIUrlClassifierFeature {
     17 public:
     18  NS_DECL_ISUPPORTS
     19  NS_DECL_NSIURLCLASSIFIERFEATURE
     20 
     21  explicit UrlClassifierFeatureCustomTables(
     22      const nsACString& aName, const nsTArray<nsCString>& aBlocklistTables,
     23      const nsTArray<nsCString>& aEntitylistTables);
     24 
     25 private:
     26  virtual ~UrlClassifierFeatureCustomTables();
     27 
     28  nsCString mName;
     29  nsTArray<nsCString> mBlocklistTables;
     30  nsTArray<nsCString> mEntitylistTables;
     31 };
     32 
     33 }  // namespace mozilla
     34 
     35 #endif  // mozilla_UrlClassifierFeatureCustomTables_h