Bug 1874684 - Part 13: Pass DateDuration to AddDate/CalendarDateAdd. r=sfink
[gecko.git] / netwerk / url-classifier / UrlClassifierFeatureResult.h
blobfba6c95c9b89fc83399070897ca5bdf7bf9f7b35
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_UrlClassifierFeatureResult_h
8 #define mozilla_net_UrlClassifierFeatureResult_h
10 #include "nsIUrlClassifierFeature.h"
11 #include "nsString.h"
12 #include "nsCOMPtr.h"
13 #include "nsIURI.h"
15 namespace mozilla {
16 namespace net {
18 class UrlClassifierFeatureResult final : public nsIUrlClassifierFeatureResult {
19 public:
20 NS_DECL_ISUPPORTS
21 NS_DECL_NSIURLCLASSIFIERFEATURERESULT
23 UrlClassifierFeatureResult(nsIURI* aURI, nsIUrlClassifierFeature* aFeature,
24 const nsACString& aList);
26 nsIURI* URI() const { return mURI; }
28 nsIUrlClassifierFeature* Feature() const { return mFeature; }
30 // Comma separated list of tables.
31 const nsCString& List() const { return mList; }
33 protected:
34 ~UrlClassifierFeatureResult();
36 private:
37 nsCOMPtr<nsIURI> mURI;
38 nsCOMPtr<nsIUrlClassifierFeature> mFeature;
39 const nsCString mList;
42 } // namespace net
43 } // namespace mozilla
45 #endif // mozilla_net_UrlClassifierFeatureResult_h