Bug 1839316: part 5) Guard the "fetchpriority" attribute behind a pref. r=kershaw...
[gecko.git] / docshell / base / nsRefreshTimer.h
blob423f8807eb02c97d92201fff4e2e68613059b3dc
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 nsRefreshTimer_h__
8 #define nsRefreshTimer_h__
10 #include "nsINamed.h"
11 #include "nsITimer.h"
13 #include "nsCOMPtr.h"
15 class nsDocShell;
16 class nsIURI;
17 class nsIPrincipal;
19 class nsRefreshTimer : public nsITimerCallback, public nsINamed {
20 public:
21 nsRefreshTimer(nsDocShell* aDocShell, nsIURI* aURI, nsIPrincipal* aPrincipal,
22 int32_t aDelay);
24 NS_DECL_THREADSAFE_ISUPPORTS
25 NS_DECL_NSITIMERCALLBACK
26 NS_DECL_NSINAMED
28 int32_t GetDelay() { return mDelay; }
30 RefPtr<nsDocShell> mDocShell;
31 nsCOMPtr<nsIURI> mURI;
32 nsCOMPtr<nsIPrincipal> mPrincipal;
33 int32_t mDelay;
35 private:
36 virtual ~nsRefreshTimer();
39 #endif /* nsRefreshTimer_h__ */