summaryrefslogtreecommitdiffstats
path: root/dom/ipc/RemoteWebProgressRequest.h
blob: cef1cb76f6cba77d2546347709f57ffe49aeae8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

#ifndef mozilla_dom_RemoteWebProgressRequest_h
#define mozilla_dom_RemoteWebProgressRequest_h

#include "nsIChannel.h"
#include "nsIClassifiedChannel.h"

namespace mozilla::dom {

class RemoteWebProgressRequest final : public nsIChannel,
                                       public nsIClassifiedChannel {
 public:
  NS_DECL_ISUPPORTS
  NS_DECL_NSICHANNEL
  NS_DECL_NSICLASSIFIEDCHANNEL
  NS_DECL_NSIREQUEST

  RemoteWebProgressRequest(nsIURI* aURI, nsIURI* aOriginalURI,
                           const nsACString& aMatchedList)
      : mURI(aURI), mOriginalURI(aOriginalURI), mMatchedList(aMatchedList) {}

 protected:
  ~RemoteWebProgressRequest() = default;

 private:
  nsCOMPtr<nsIURI> mURI;
  nsCOMPtr<nsIURI> mOriginalURI;
  nsCString mMatchedList;
};

}  // namespace mozilla::dom

#endif  // mozilla_dom_RemoteWebProgressRequest_h