Bug 1807268 - Fix verifyOpenAllInNewTabsOptionTest UI test r=ohorvath
[gecko.git] / docshell / base / nsPingListener.h
blob7cf6ff98b522a7627f9c3141f5df035c7a4c4f8d
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 nsPingListener_h__
8 #define nsPingListener_h__
10 #include "nsIStreamListener.h"
11 #include "nsIReferrerInfo.h"
12 #include "nsCOMPtr.h"
14 namespace mozilla {
15 namespace dom {
16 class DocGroup;
18 } // namespace mozilla
20 class nsIContent;
21 class nsIDocShell;
22 class nsILoadGroup;
23 class nsITimer;
24 class nsIURI;
26 class nsPingListener final : public nsIStreamListener {
27 public:
28 NS_DECL_ISUPPORTS
29 NS_DECL_NSIREQUESTOBSERVER
30 NS_DECL_NSISTREAMLISTENER
32 nsPingListener() {}
34 void SetLoadGroup(nsILoadGroup* aLoadGroup) { mLoadGroup = aLoadGroup; }
36 nsresult StartTimeout(mozilla::dom::DocGroup* aDocGroup);
38 static void DispatchPings(nsIDocShell* aDocShell, nsIContent* aContent,
39 nsIURI* aTarget, nsIReferrerInfo* aReferrerInfo);
41 private:
42 ~nsPingListener();
44 nsCOMPtr<nsILoadGroup> mLoadGroup;
45 nsCOMPtr<nsITimer> mTimer;
48 #endif /* nsPingListener_h__ */