tor-browser

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

nsRefreshTimer.h (1000B)


      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 nsRefreshTimer_h__
      8 #define nsRefreshTimer_h__
      9 
     10 #include "nsINamed.h"
     11 #include "nsITimer.h"
     12 
     13 #include "nsCOMPtr.h"
     14 
     15 class nsDocShell;
     16 class nsIURI;
     17 class nsIPrincipal;
     18 
     19 class nsRefreshTimer : public nsITimerCallback, public nsINamed {
     20 public:
     21  nsRefreshTimer(nsDocShell* aDocShell, nsIURI* aURI, nsIPrincipal* aPrincipal,
     22                 int32_t aDelay);
     23 
     24  NS_DECL_THREADSAFE_ISUPPORTS
     25  NS_DECL_NSITIMERCALLBACK
     26  NS_DECL_NSINAMED
     27 
     28  int32_t GetDelay() { return mDelay; }
     29 
     30  RefPtr<nsDocShell> mDocShell;
     31  nsCOMPtr<nsIURI> mURI;
     32  nsCOMPtr<nsIPrincipal> mPrincipal;
     33  int32_t mDelay;
     34 
     35 private:
     36  virtual ~nsRefreshTimer();
     37 };
     38 
     39 #endif /* nsRefreshTimer_h__ */