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 #include "nsRefreshTimer.h"
10 #include "nsIPrincipal.h"
12 #include "nsDocShell.h"
14 NS_IMPL_ADDREF(nsRefreshTimer
)
15 NS_IMPL_RELEASE(nsRefreshTimer
)
17 NS_INTERFACE_MAP_BEGIN(nsRefreshTimer
)
18 NS_INTERFACE_MAP_ENTRY_AMBIGUOUS(nsISupports
, nsITimerCallback
)
19 NS_INTERFACE_MAP_ENTRY(nsITimerCallback
)
20 NS_INTERFACE_MAP_ENTRY(nsINamed
)
23 nsRefreshTimer::nsRefreshTimer(nsDocShell
* aDocShell
, nsIURI
* aURI
,
24 nsIPrincipal
* aPrincipal
, int32_t aDelay
)
25 : mDocShell(aDocShell
),
27 mPrincipal(aPrincipal
),
30 nsRefreshTimer::~nsRefreshTimer() {}
33 nsRefreshTimer::Notify(nsITimer
* aTimer
) {
34 NS_ASSERTION(mDocShell
, "DocShell is somehow null");
36 if (mDocShell
&& aTimer
) {
37 // Get the delay count to determine load type
39 aTimer
->GetDelay(&delay
);
40 mDocShell
->ForceRefreshURIFromTimer(mURI
, mPrincipal
, delay
, aTimer
);
46 nsRefreshTimer::GetName(nsACString
& aName
) {
47 aName
.AssignLiteral("nsRefreshTimer");