tor-browser

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

UrlClassifierFeatureResult.h (1295B)


      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_UrlClassifierFeatureResult_h
      8 #define mozilla_net_UrlClassifierFeatureResult_h
      9 
     10 #include "nsIUrlClassifierFeature.h"
     11 #include "nsString.h"
     12 #include "nsCOMPtr.h"
     13 #include "nsIURI.h"
     14 
     15 namespace mozilla {
     16 namespace net {
     17 
     18 class UrlClassifierFeatureResult final : public nsIUrlClassifierFeatureResult {
     19 public:
     20  NS_DECL_ISUPPORTS
     21  NS_DECL_NSIURLCLASSIFIERFEATURERESULT
     22 
     23  UrlClassifierFeatureResult(nsIURI* aURI, nsIUrlClassifierFeature* aFeature,
     24                             const nsACString& aList);
     25 
     26  nsIURI* URI() const { return mURI; }
     27 
     28  nsIUrlClassifierFeature* Feature() const { return mFeature; }
     29 
     30  // Comma separated list of tables.
     31  const nsCString& List() const { return mList; }
     32 
     33 protected:
     34  ~UrlClassifierFeatureResult();
     35 
     36 private:
     37  nsCOMPtr<nsIURI> mURI;
     38  nsCOMPtr<nsIUrlClassifierFeature> mFeature;
     39  const nsCString mList;
     40 };
     41 
     42 }  // namespace net
     43 }  // namespace mozilla
     44 
     45 #endif  // mozilla_net_UrlClassifierFeatureResult_h