2001-09-25 22:43:09 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2005-08-15 18:16:42 +00:00
|
|
|
/* vim: set ts=2 sw=2 et tw=80: */
|
2012-05-21 11:12:37 +00:00
|
|
|
/* 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/. */
|
2001-04-18 06:06:31 +00:00
|
|
|
|
1998-07-24 05:05:42 +00:00
|
|
|
#ifndef nsGlobalWindow_h___
|
|
|
|
#define nsGlobalWindow_h___
|
|
|
|
|
2010-09-17 01:24:14 +00:00
|
|
|
#include "mozilla/XPCOM.h" // for TimeStamp/TimeDuration
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
// Local Includes
|
|
|
|
// Helper Classes
|
1999-10-14 10:58:25 +00:00
|
|
|
#include "nsCOMPtr.h"
|
2003-06-20 23:51:46 +00:00
|
|
|
#include "nsAutoPtr.h"
|
2000-05-14 05:26:06 +00:00
|
|
|
#include "nsWeakReference.h"
|
2000-03-24 00:11:48 +00:00
|
|
|
#include "nsHashtable.h"
|
2006-05-19 05:57:36 +00:00
|
|
|
#include "nsDataHashtable.h"
|
2007-01-04 22:31:26 +00:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2008-02-13 04:17:18 +00:00
|
|
|
#include "nsDOMScriptObjectHolder.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
|
|
|
|
// Interfaces Needed
|
|
|
|
#include "nsDOMWindowList.h"
|
|
|
|
#include "nsIBaseWindow.h"
|
2004-12-07 16:09:23 +00:00
|
|
|
#include "nsIBrowserDOMWindow.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIDocShellTreeOwner.h"
|
|
|
|
#include "nsIDocShellTreeItem.h"
|
2007-05-14 09:11:38 +00:00
|
|
|
#include "nsIDOMEventTarget.h"
|
2001-05-17 02:15:27 +00:00
|
|
|
#include "nsIInterfaceRequestor.h"
|
2001-09-05 21:28:38 +00:00
|
|
|
#include "nsIInterfaceRequestorUtils.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#include "nsIDOMJSWindow.h"
|
2002-02-09 03:36:55 +00:00
|
|
|
#include "nsIDOMChromeWindow.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsIScriptGlobalObject.h"
|
2005-07-30 20:57:07 +00:00
|
|
|
#include "nsIScriptContext.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#include "nsIScriptObjectPrincipal.h"
|
2006-06-13 03:07:47 +00:00
|
|
|
#include "nsIScriptTimeoutHandler.h"
|
2000-02-08 13:40:10 +00:00
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "nsIWebBrowserChrome.h"
|
1999-10-14 10:58:25 +00:00
|
|
|
#include "nsPIDOMWindow.h"
|
2007-07-26 17:52:26 +00:00
|
|
|
#include "nsIDOMModalContentWindow.h"
|
2003-06-26 00:41:23 +00:00
|
|
|
#include "nsIScriptSecurityManager.h"
|
2011-06-24 02:18:01 +00:00
|
|
|
#include "nsEventListenerManager.h"
|
2000-02-09 05:26:02 +00:00
|
|
|
#include "nsIDOMDocument.h"
|
2010-09-29 16:56:46 +00:00
|
|
|
#ifndef MOZ_DISABLE_DOMCRYPTO
|
2000-05-11 19:17:07 +00:00
|
|
|
#include "nsIDOMCrypto.h"
|
2010-09-29 16:56:46 +00:00
|
|
|
#endif
|
2000-07-13 21:48:25 +00:00
|
|
|
#include "nsIPrincipal.h"
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
#include "nsIXPCScriptable.h"
|
2002-02-20 03:33:52 +00:00
|
|
|
#include "nsPoint.h"
|
|
|
|
#include "nsSize.h"
|
2009-07-30 03:16:44 +00:00
|
|
|
#include "nsRect.h"
|
2004-05-27 22:08:42 +00:00
|
|
|
#include "mozFlushType.h"
|
2005-07-30 20:57:07 +00:00
|
|
|
#include "prclist.h"
|
2009-05-16 13:59:30 +00:00
|
|
|
#include "nsIDOMStorageObsolete.h"
|
2010-01-28 14:53:53 +00:00
|
|
|
#include "nsIDOMStorageEvent.h"
|
2011-01-12 17:35:31 +00:00
|
|
|
#include "nsIDOMStorageIndexedDB.h"
|
2007-05-29 09:45:30 +00:00
|
|
|
#include "nsIDOMOfflineResourceList.h"
|
2007-07-26 17:52:26 +00:00
|
|
|
#include "nsIArray.h"
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
#include "nsIContent.h"
|
2010-06-28 16:44:30 +00:00
|
|
|
#include "nsIIDBFactory.h"
|
2010-05-18 12:28:37 +00:00
|
|
|
#include "nsFrameMessageManager.h"
|
2010-07-15 13:59:24 +00:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2011-08-24 19:49:25 +00:00
|
|
|
#include "nsIDOMTouchEvent.h"
|
2011-08-24 19:49:25 +00:00
|
|
|
#include "nsIInlineEventHandlers.h"
|
2012-04-20 20:43:48 +00:00
|
|
|
#include "nsWrapperCacheInlines.h"
|
2012-05-16 10:40:47 +00:00
|
|
|
#include "nsIDOMApplicationRegistry.h"
|
2012-06-29 08:32:21 +00:00
|
|
|
#include "nsIIdleObserver.h"
|
1998-07-24 05:05:42 +00:00
|
|
|
|
2010-09-17 21:54:40 +00:00
|
|
|
// JS includes
|
|
|
|
#include "jsapi.h"
|
|
|
|
|
1999-04-28 20:33:43 +00:00
|
|
|
#define DEFAULT_HOME_PAGE "www.mozilla.org"
|
|
|
|
#define PREF_BROWSER_STARTUP_HOMEPAGE "browser.startup.homepage"
|
|
|
|
|
2010-09-17 01:24:14 +00:00
|
|
|
// Amount of time allowed between alert/prompt/confirm before enabling
|
|
|
|
// the stop dialog checkbox.
|
|
|
|
#define SUCCESSIVE_DIALOG_TIME_LIMIT 3 // 3 sec
|
|
|
|
|
|
|
|
// During click or mousedown events (and others, see nsDOMEvent) we allow modal
|
|
|
|
// dialogs up to this limit, even if they were disabled.
|
|
|
|
#define MAX_DIALOG_COUNT 10
|
|
|
|
|
2012-06-29 08:32:21 +00:00
|
|
|
// Idle fuzz time upper limit
|
|
|
|
#define MAX_IDLE_FUZZ_TIME_MS 90000
|
|
|
|
|
|
|
|
// Min idle notification time in seconds.
|
|
|
|
#define MIN_IDLE_NOTIFICATION_TIME_S 1
|
|
|
|
|
1999-06-09 19:04:18 +00:00
|
|
|
class nsIDOMBarProp;
|
1999-05-27 21:06:51 +00:00
|
|
|
class nsIDocument;
|
2004-07-31 23:15:21 +00:00
|
|
|
class nsPresContext;
|
1998-07-24 05:05:42 +00:00
|
|
|
class nsIDOMEvent;
|
2009-09-03 03:57:46 +00:00
|
|
|
class nsIScrollableFrame;
|
2007-10-13 16:42:44 +00:00
|
|
|
class nsIControllers;
|
1998-07-24 05:05:42 +00:00
|
|
|
|
2004-12-10 19:48:22 +00:00
|
|
|
class nsBarProp;
|
|
|
|
class nsLocation;
|
|
|
|
class nsScreen;
|
|
|
|
class nsHistory;
|
2011-06-23 10:39:48 +00:00
|
|
|
class nsPerformance;
|
2000-08-11 04:31:08 +00:00
|
|
|
class nsIDocShellLoadInfo;
|
2005-05-04 20:22:32 +00:00
|
|
|
class WindowStateHolder;
|
2006-05-03 21:53:08 +00:00
|
|
|
class nsGlobalWindowObserver;
|
2006-09-21 03:46:46 +00:00
|
|
|
class nsGlobalWindow;
|
2008-05-02 19:26:47 +00:00
|
|
|
class PostMessageEvent;
|
2009-11-19 23:11:44 +00:00
|
|
|
class nsRunnable;
|
2012-03-13 00:56:07 +00:00
|
|
|
class nsDOMEventTargetHelper;
|
2007-05-29 09:45:30 +00:00
|
|
|
class nsDOMOfflineResourceList;
|
2010-11-23 08:50:55 +00:00
|
|
|
class nsDOMMozURLProperty;
|
2012-04-02 02:23:51 +00:00
|
|
|
class nsDOMWindowUtils;
|
2012-06-29 08:32:21 +00:00
|
|
|
class nsIIdleService;
|
2007-05-29 09:45:30 +00:00
|
|
|
|
2010-09-29 16:56:46 +00:00
|
|
|
#ifdef MOZ_DISABLE_DOMCRYPTO
|
|
|
|
class nsIDOMCrypto;
|
|
|
|
#endif
|
|
|
|
|
2012-02-01 21:58:01 +00:00
|
|
|
class nsWindowSizes;
|
|
|
|
|
2011-11-02 13:44:16 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
class Navigator;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
extern nsresult
|
2008-01-30 02:11:48 +00:00
|
|
|
NS_CreateJSTimeoutHandler(nsGlobalWindow *aWindow,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool *aIsInterval,
|
2006-06-13 03:07:47 +00:00
|
|
|
PRInt32 *aInterval,
|
|
|
|
nsIScriptTimeoutHandler **aRet);
|
|
|
|
|
2006-09-21 03:46:46 +00:00
|
|
|
/*
|
|
|
|
* Timeout struct that holds information about each script
|
|
|
|
* timeout. Holds a strong reference to an nsIScriptTimeoutHandler, which
|
|
|
|
* abstracts the language specific cruft.
|
|
|
|
*/
|
|
|
|
struct nsTimeout : PRCList
|
|
|
|
{
|
|
|
|
nsTimeout();
|
|
|
|
~nsTimeout();
|
|
|
|
|
2009-01-25 14:34:26 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_NATIVE_CLASS(nsTimeout)
|
|
|
|
|
2006-09-21 03:46:46 +00:00
|
|
|
nsrefcnt Release();
|
|
|
|
nsrefcnt AddRef();
|
|
|
|
|
|
|
|
nsTimeout* Next() {
|
|
|
|
// Note: might not actually return an nsTimeout. Use IsTimeout to check.
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsTimeout*>(PR_NEXT_LINK(this));
|
2006-09-21 03:46:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsTimeout* Prev() {
|
|
|
|
// Note: might not actually return an nsTimeout. Use IsTimeout to check.
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsTimeout*>(PR_PREV_LINK(this));
|
2006-09-21 03:46:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Window for which this timeout fires
|
|
|
|
nsRefPtr<nsGlobalWindow> mWindow;
|
|
|
|
|
|
|
|
// The actual timer object
|
|
|
|
nsCOMPtr<nsITimer> mTimer;
|
|
|
|
|
|
|
|
// True if the timeout was cleared
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mCleared;
|
2006-09-21 03:46:46 +00:00
|
|
|
|
|
|
|
// True if this is one of the timeouts that are currently running
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mRunning;
|
2006-09-21 03:46:46 +00:00
|
|
|
|
2011-06-29 19:49:42 +00:00
|
|
|
// True if this is a repeating/interval timer
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsInterval;
|
2011-06-29 19:49:42 +00:00
|
|
|
|
2006-09-21 03:46:46 +00:00
|
|
|
// Returned as value of setTimeout()
|
|
|
|
PRUint32 mPublicId;
|
|
|
|
|
2011-06-29 19:49:42 +00:00
|
|
|
// Interval in milliseconds
|
2006-09-21 03:46:46 +00:00
|
|
|
PRUint32 mInterval;
|
|
|
|
|
2010-07-15 13:59:24 +00:00
|
|
|
// mWhen and mTimeRemaining can't be in a union, sadly, because they
|
|
|
|
// have constructors.
|
|
|
|
// Nominal time to run this timeout. Use only when timeouts are not
|
|
|
|
// suspended.
|
|
|
|
mozilla::TimeStamp mWhen;
|
|
|
|
// Remaining time to wait. Used only when timeouts are suspended.
|
|
|
|
mozilla::TimeDuration mTimeRemaining;
|
2006-09-21 03:46:46 +00:00
|
|
|
|
|
|
|
// Principal with which to execute
|
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
|
|
|
|
|
|
|
// stack depth at which timeout is firing
|
|
|
|
PRUint32 mFiringDepth;
|
|
|
|
|
2009-08-26 18:07:39 +00:00
|
|
|
//
|
|
|
|
PRUint32 mNestingLevel;
|
|
|
|
|
2006-09-21 03:46:46 +00:00
|
|
|
// The popup state at timeout creation time if not created from
|
|
|
|
// another timeout
|
|
|
|
PopupControlState mPopupState;
|
|
|
|
|
|
|
|
// The language-specific information about the callback.
|
|
|
|
nsCOMPtr<nsIScriptTimeoutHandler> mScriptHandler;
|
|
|
|
|
|
|
|
private:
|
|
|
|
// reference count for shared usage
|
2009-01-25 14:34:26 +00:00
|
|
|
nsAutoRefCnt mRefCnt;
|
2006-09-21 03:46:46 +00:00
|
|
|
};
|
|
|
|
|
2012-06-29 08:32:21 +00:00
|
|
|
struct IdleObserverHolder
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIIdleObserver> mIdleObserver;
|
|
|
|
PRUint32 mTimeInS;
|
2012-07-13 22:39:46 +00:00
|
|
|
bool mPrevNotificationIdle;
|
2012-06-29 08:32:21 +00:00
|
|
|
|
|
|
|
IdleObserverHolder()
|
2012-07-13 22:39:46 +00:00
|
|
|
: mTimeInS(0), mPrevNotificationIdle(false)
|
2012-06-29 08:32:21 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(IdleObserverHolder);
|
|
|
|
}
|
|
|
|
|
2012-07-13 22:39:46 +00:00
|
|
|
IdleObserverHolder(const IdleObserverHolder& aOther)
|
|
|
|
: mIdleObserver(aOther.mIdleObserver), mTimeInS(aOther.mTimeInS),
|
|
|
|
mPrevNotificationIdle(aOther.mPrevNotificationIdle)
|
2012-06-29 08:32:21 +00:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(IdleObserverHolder);
|
|
|
|
}
|
|
|
|
|
2012-07-13 22:39:46 +00:00
|
|
|
bool operator==(const IdleObserverHolder& aOther) const {
|
2012-06-29 08:32:21 +00:00
|
|
|
return
|
2012-07-13 22:39:46 +00:00
|
|
|
mIdleObserver == aOther.mIdleObserver &&
|
|
|
|
mTimeInS == aOther.mTimeInS;
|
2012-06-29 08:32:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~IdleObserverHolder()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(IdleObserverHolder);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
//*****************************************************************************
|
2004-12-10 19:48:22 +00:00
|
|
|
// nsGlobalWindow: Global Object for Scripting
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
//*****************************************************************************
|
2001-07-24 22:39:11 +00:00
|
|
|
// Beware that all scriptable interfaces implemented by
|
2004-12-10 19:48:22 +00:00
|
|
|
// nsGlobalWindow will be reachable from JS, if you make this class
|
2001-07-24 22:39:11 +00:00
|
|
|
// implement new interfaces you better know what you're
|
|
|
|
// doing. Security wise this is very sensitive code. --
|
|
|
|
// jst@netscape.com
|
|
|
|
|
2005-08-12 04:11:00 +00:00
|
|
|
// nsGlobalWindow inherits PRCList for maintaining a list of all inner
|
2008-01-30 01:31:29 +00:00
|
|
|
// windows still in memory for any given outer window. This list is
|
2005-08-12 04:11:00 +00:00
|
|
|
// needed to ensure that mOuterWindow doesn't end up dangling. The
|
|
|
|
// nature of PRCList means that the window itself is always in the
|
|
|
|
// list, and an outer window's list will also contain all inner window
|
|
|
|
// objects that are still in memory (and in reality all inner window
|
|
|
|
// object's lists also contain its outer and all other inner windows
|
|
|
|
// belonging to the same outer window, but that's an unimportant
|
|
|
|
// side effect of inheriting PRCList).
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2005-07-31 19:43:27 +00:00
|
|
|
class nsGlobalWindow : public nsPIDOMWindow,
|
|
|
|
public nsIScriptGlobalObject,
|
2004-12-10 19:48:22 +00:00
|
|
|
public nsIDOMJSWindow,
|
|
|
|
public nsIScriptObjectPrincipal,
|
2007-05-14 09:11:38 +00:00
|
|
|
public nsIDOMEventTarget,
|
2011-01-12 17:35:31 +00:00
|
|
|
public nsIDOMStorageIndexedDB,
|
2004-12-10 19:48:22 +00:00
|
|
|
public nsSupportsWeakReference,
|
2005-07-30 20:57:07 +00:00
|
|
|
public nsIInterfaceRequestor,
|
2010-09-17 21:54:40 +00:00
|
|
|
public nsWrapperCache,
|
2011-06-23 10:39:48 +00:00
|
|
|
public PRCListStr,
|
2011-08-24 19:49:25 +00:00
|
|
|
public nsIDOMWindowPerformance,
|
2011-08-24 19:49:25 +00:00
|
|
|
public nsITouchEventReceiver,
|
|
|
|
public nsIInlineEventHandlers
|
1998-07-24 05:05:42 +00:00
|
|
|
{
|
|
|
|
public:
|
2010-11-23 08:50:55 +00:00
|
|
|
friend class nsDOMMozURLProperty;
|
|
|
|
|
2010-09-17 01:24:14 +00:00
|
|
|
typedef mozilla::TimeStamp TimeStamp;
|
|
|
|
typedef mozilla::TimeDuration TimeDuration;
|
2011-11-02 13:44:16 +00:00
|
|
|
typedef mozilla::dom::Navigator Navigator;
|
2011-06-29 11:06:43 +00:00
|
|
|
typedef nsDataHashtable<nsUint64HashKey, nsGlobalWindow*> WindowByIdTable;
|
2010-09-17 01:24:14 +00:00
|
|
|
|
2004-05-03 21:48:36 +00:00
|
|
|
// public methods
|
|
|
|
nsPIDOMWindow* GetPrivateParent();
|
|
|
|
// callback for close event
|
|
|
|
void ReallyCloseWindow();
|
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
// nsISupports
|
2007-01-04 22:31:26 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2001-01-18 07:44:29 +00:00
|
|
|
|
2011-08-20 13:53:34 +00:00
|
|
|
// nsWrapperCache
|
2012-03-14 15:25:40 +00:00
|
|
|
JSObject *WrapObject(JSContext *cx, JSObject *scope, bool *triedToWrap)
|
2011-08-20 13:53:34 +00:00
|
|
|
{
|
|
|
|
NS_ASSERTION(IsOuterWindow(),
|
|
|
|
"Inner window supports nsWrapperCache, fix WrapObject!");
|
|
|
|
*triedToWrap = true;
|
|
|
|
return EnsureInnerWindow() ? GetWrapper() : nsnull;
|
|
|
|
}
|
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
// nsIScriptGlobalObject
|
2004-02-09 22:48:53 +00:00
|
|
|
virtual nsIScriptContext *GetContext();
|
2006-06-13 03:07:47 +00:00
|
|
|
virtual JSObject *GetGlobalJSObject();
|
2010-06-08 16:13:08 +00:00
|
|
|
JSObject *FastGetGlobalJSObject()
|
|
|
|
{
|
|
|
|
return mJSObject;
|
|
|
|
}
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2012-03-23 17:13:29 +00:00
|
|
|
virtual nsresult EnsureScriptEnvironment();
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2012-03-23 17:13:29 +00:00
|
|
|
virtual nsIScriptContext *GetScriptContext();
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2011-04-14 12:04:08 +00:00
|
|
|
virtual void OnFinalize(JSObject* aObject);
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void SetScriptsEnabled(bool aEnabled, bool aFireTimeouts);
|
2001-01-18 07:44:29 +00:00
|
|
|
|
2012-01-26 15:03:21 +00:00
|
|
|
virtual bool IsBlackForCC();
|
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
// nsIScriptObjectPrincipal
|
2004-04-18 00:28:47 +00:00
|
|
|
virtual nsIPrincipal* GetPrincipal();
|
2001-01-18 07:44:29 +00:00
|
|
|
|
|
|
|
// nsIDOMWindow
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
NS_DECL_NSIDOMWINDOW
|
2001-01-18 07:44:29 +00:00
|
|
|
|
2011-06-23 10:39:48 +00:00
|
|
|
// nsIDOMWindowPerformance
|
|
|
|
NS_DECL_NSIDOMWINDOWPERFORMANCE
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
// nsIDOMJSWindow
|
|
|
|
NS_DECL_NSIDOMJSWINDOW
|
2001-01-18 07:44:29 +00:00
|
|
|
|
|
|
|
// nsIDOMEventTarget
|
2002-11-09 00:25:25 +00:00
|
|
|
NS_DECL_NSIDOMEVENTTARGET
|
|
|
|
|
2011-08-24 19:49:25 +00:00
|
|
|
// nsITouchEventReceiver
|
|
|
|
NS_DECL_NSITOUCHEVENTRECEIVER
|
|
|
|
|
2011-08-24 19:49:25 +00:00
|
|
|
// nsIInlineEventHandlers
|
|
|
|
NS_DECL_NSIINLINEEVENTHANDLERS
|
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
// nsPIDOMWindow
|
2004-05-03 21:48:36 +00:00
|
|
|
virtual NS_HIDDEN_(nsPIDOMWindow*) GetPrivateRoot();
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual NS_HIDDEN_(void) ActivateOrDeactivate(bool aActivate);
|
|
|
|
virtual NS_HIDDEN_(void) SetActive(bool aActive);
|
|
|
|
virtual NS_HIDDEN_(void) SetIsBackground(bool aIsBackground);
|
2011-06-24 02:18:00 +00:00
|
|
|
virtual NS_HIDDEN_(void) SetChromeEventHandler(nsIDOMEventTarget* aChromeEventHandler);
|
2004-05-03 21:48:36 +00:00
|
|
|
|
2006-02-20 18:52:42 +00:00
|
|
|
virtual NS_HIDDEN_(void) SetOpenerScriptPrincipal(nsIPrincipal* aPrincipal);
|
2006-08-15 17:31:16 +00:00
|
|
|
virtual NS_HIDDEN_(nsIPrincipal*) GetOpenerScriptPrincipal();
|
2002-04-17 04:17:16 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual NS_HIDDEN_(PopupControlState) PushPopupControlState(PopupControlState state, bool aForce) const;
|
2004-09-04 19:28:46 +00:00
|
|
|
virtual NS_HIDDEN_(void) PopPopupControlState(PopupControlState state) const;
|
|
|
|
virtual NS_HIDDEN_(PopupControlState) GetPopupControlState() const;
|
|
|
|
|
2005-05-04 20:22:32 +00:00
|
|
|
virtual NS_HIDDEN_(nsresult) SaveWindowState(nsISupports **aState);
|
|
|
|
virtual NS_HIDDEN_(nsresult) RestoreWindowState(nsISupports *aState);
|
2009-03-03 20:18:00 +00:00
|
|
|
virtual NS_HIDDEN_(void) SuspendTimeouts(PRUint32 aIncrease = 1,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aFreezeChildren = true);
|
|
|
|
virtual NS_HIDDEN_(nsresult) ResumeTimeouts(bool aThawChildren = true);
|
2009-03-03 20:18:00 +00:00
|
|
|
virtual NS_HIDDEN_(PRUint32) TimeoutSuspendCount();
|
2006-05-03 21:53:08 +00:00
|
|
|
virtual NS_HIDDEN_(nsresult) FireDelayedDOMEvents();
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual NS_HIDDEN_(bool) IsFrozen() const
|
2008-01-16 21:54:33 +00:00
|
|
|
{
|
|
|
|
return mIsFrozen;
|
|
|
|
}
|
2005-07-30 20:57:07 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual NS_HIDDEN_(bool) WouldReuseInnerWindow(nsIDocument *aNewDocument);
|
2006-03-07 17:08:51 +00:00
|
|
|
|
2005-12-01 19:35:27 +00:00
|
|
|
virtual NS_HIDDEN_(void) SetDocShell(nsIDocShell* aDocShell);
|
2012-05-25 19:00:32 +00:00
|
|
|
virtual void DetachFromDocShell();
|
2005-12-01 19:35:27 +00:00
|
|
|
virtual NS_HIDDEN_(nsresult) SetNewDocument(nsIDocument *aDocument,
|
2010-09-15 22:54:00 +00:00
|
|
|
nsISupports *aState,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aForceReuseInnerWindow);
|
2010-06-10 16:23:40 +00:00
|
|
|
void DispatchDOMWindowCreated();
|
2011-07-15 10:31:34 +00:00
|
|
|
virtual NS_HIDDEN_(void) SetOpenerWindow(nsIDOMWindow* aOpener,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aOriginalOpener);
|
2006-04-08 03:23:37 +00:00
|
|
|
virtual NS_HIDDEN_(void) EnsureSizeUpToDate();
|
2005-08-23 00:24:57 +00:00
|
|
|
|
2011-07-15 10:31:34 +00:00
|
|
|
virtual NS_HIDDEN_(nsIDOMWindow*) EnterModalState();
|
|
|
|
virtual NS_HIDDEN_(void) LeaveModalState(nsIDOMWindow* aWindow);
|
2006-07-05 22:48:04 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual NS_HIDDEN_(bool) CanClose();
|
2010-01-28 18:35:20 +00:00
|
|
|
virtual NS_HIDDEN_(nsresult) ForceClose();
|
|
|
|
|
2010-08-02 13:34:54 +00:00
|
|
|
virtual NS_HIDDEN_(void) MaybeUpdateTouchState();
|
|
|
|
virtual NS_HIDDEN_(void) UpdateTouchState();
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual NS_HIDDEN_(bool) DispatchCustomEvent(const char *aEventName);
|
2012-06-15 06:31:27 +00:00
|
|
|
virtual NS_HIDDEN_(void) RefreshCompartmentPrincipal();
|
2012-02-19 21:02:08 +00:00
|
|
|
virtual NS_HIDDEN_(nsresult) SetFullScreenInternal(bool aIsFullScreen, bool aRequireTrust);
|
2012-06-28 08:54:37 +00:00
|
|
|
virtual NS_HIDDEN_(bool) IsPartOfApp();
|
2009-08-21 14:42:37 +00:00
|
|
|
|
2011-07-15 10:32:37 +00:00
|
|
|
// nsIDOMStorageIndexedDB
|
|
|
|
NS_DECL_NSIDOMSTORAGEINDEXEDDB
|
2006-05-19 05:57:36 +00:00
|
|
|
|
2001-05-17 02:15:27 +00:00
|
|
|
// nsIInterfaceRequestor
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
// Object Management
|
2005-07-30 20:57:07 +00:00
|
|
|
nsGlobalWindow(nsGlobalWindow *aOuterWindow);
|
|
|
|
|
2009-05-12 20:20:42 +00:00
|
|
|
static nsGlobalWindow *FromSupports(nsISupports *supports)
|
2005-07-30 20:57:07 +00:00
|
|
|
{
|
|
|
|
// Make sure this matches the casts we do in QueryInterface().
|
2009-05-12 20:20:42 +00:00
|
|
|
return (nsGlobalWindow *)(nsIScriptGlobalObject *)supports;
|
|
|
|
}
|
2010-08-10 22:00:26 +00:00
|
|
|
static nsISupports *ToSupports(nsGlobalWindow *win)
|
|
|
|
{
|
|
|
|
// Make sure this matches the casts we do in QueryInterface().
|
|
|
|
return (nsISupports *)(nsIScriptGlobalObject *)win;
|
|
|
|
}
|
2009-05-12 20:20:42 +00:00
|
|
|
static nsGlobalWindow *FromWrapper(nsIXPConnectWrappedNative *wrapper)
|
|
|
|
{
|
|
|
|
return FromSupports(wrapper->Native());
|
2005-07-30 20:57:07 +00:00
|
|
|
}
|
|
|
|
|
2012-05-23 15:27:10 +00:00
|
|
|
/**
|
|
|
|
* Wrap nsIDOMWindow::GetTop so we can overload the inline GetTop()
|
|
|
|
* implementation below. (nsIDOMWindow::GetTop simply calls
|
|
|
|
* nsIDOMWindow::GetRealTop().)
|
|
|
|
*/
|
|
|
|
nsresult GetTop(nsIDOMWindow **aWindow)
|
|
|
|
{
|
|
|
|
return nsIDOMWindow::GetTop(aWindow);
|
|
|
|
}
|
|
|
|
|
2010-09-17 01:24:14 +00:00
|
|
|
inline nsGlobalWindow *GetTop()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMWindow> top;
|
|
|
|
GetTop(getter_AddRefs(top));
|
|
|
|
if (top)
|
2012-06-07 14:43:23 +00:00
|
|
|
return static_cast<nsGlobalWindow *>(top.get());
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsGlobalWindow* GetScriptableTop()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMWindow> top;
|
|
|
|
GetScriptableTop(getter_AddRefs(top));
|
|
|
|
if (top) {
|
|
|
|
return static_cast<nsGlobalWindow *>(top.get());
|
|
|
|
}
|
2010-09-17 01:24:14 +00:00
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Call this when a modal dialog is about to be opened. Returns
|
|
|
|
// true if we've reached the state in this top level window where we
|
|
|
|
// ask the user if further dialogs should be blocked.
|
|
|
|
bool DialogOpenAttempted();
|
|
|
|
|
|
|
|
// Returns true if dialogs have already been blocked for this
|
|
|
|
// window.
|
|
|
|
bool AreDialogsBlocked();
|
|
|
|
|
|
|
|
// Ask the user if further dialogs should be blocked. This is used
|
|
|
|
// in the cases where we have no modifiable UI to show, in that case
|
|
|
|
// we show a separate dialog when asking this question.
|
|
|
|
bool ConfirmDialogAllowed();
|
|
|
|
|
|
|
|
// Prevent further dialogs in this (top level) window
|
|
|
|
void PreventFurtherDialogs();
|
|
|
|
|
2011-11-22 00:34:21 +00:00
|
|
|
virtual void SetHasAudioAvailableEventListeners();
|
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
nsIScriptContext *GetContextInternal()
|
|
|
|
{
|
2005-08-12 04:11:00 +00:00
|
|
|
if (mOuterWindow) {
|
2005-07-30 20:57:07 +00:00
|
|
|
return GetOuterWindowInternal()->mContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mContext;
|
|
|
|
}
|
|
|
|
|
2006-06-13 03:07:47 +00:00
|
|
|
nsIScriptContext *GetScriptContextInternal(PRUint32 aLangID)
|
|
|
|
{
|
2010-06-29 18:46:39 +00:00
|
|
|
NS_ASSERTION(aLangID == nsIProgrammingLanguage::JAVASCRIPT,
|
|
|
|
"We don't support this language ID");
|
2006-06-13 03:07:47 +00:00
|
|
|
if (mOuterWindow) {
|
2010-06-29 18:46:39 +00:00
|
|
|
return GetOuterWindowInternal()->mContext;
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
|
2010-06-29 18:46:39 +00:00
|
|
|
return mContext;
|
2006-06-13 03:07:47 +00:00
|
|
|
}
|
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
nsGlobalWindow *GetOuterWindowInternal()
|
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsGlobalWindow *>(GetOuterWindow());
|
2005-07-30 20:57:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsGlobalWindow *GetCurrentInnerWindowInternal()
|
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsGlobalWindow *>(mInnerWindow);
|
2005-07-30 20:57:07 +00:00
|
|
|
}
|
|
|
|
|
2005-12-11 20:38:29 +00:00
|
|
|
nsGlobalWindow *EnsureInnerWindowInternal()
|
|
|
|
{
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsGlobalWindow *>(EnsureInnerWindow());
|
2005-12-11 20:38:29 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsCreatingInnerWindow() const
|
2006-11-17 01:06:41 +00:00
|
|
|
{
|
|
|
|
return mCreatingInnerWindow;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsChromeWindow() const
|
2007-08-02 23:34:38 +00:00
|
|
|
{
|
|
|
|
return mIsChrome;
|
|
|
|
}
|
|
|
|
|
2006-05-19 05:57:36 +00:00
|
|
|
nsresult Observe(nsISupports* aSubject, const char* aTopic,
|
|
|
|
const PRUnichar* aData);
|
2005-08-19 20:09:38 +00:00
|
|
|
|
2011-08-31 14:54:39 +00:00
|
|
|
static void Init();
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
static void ShutDown();
|
2008-02-13 04:17:18 +00:00
|
|
|
static void CleanupCachedXBLHandlers(nsGlobalWindow* aWindow);
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool IsCallerChrome();
|
2006-08-29 22:25:12 +00:00
|
|
|
static void CloseBlockScriptTerminationFunc(nsISupports *aRef);
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2006-10-05 17:29:47 +00:00
|
|
|
static void RunPendingTimeoutsRecursive(nsGlobalWindow *aTopWindow,
|
|
|
|
nsGlobalWindow *aWindow);
|
|
|
|
|
2005-05-04 20:22:32 +00:00
|
|
|
friend class WindowStateHolder;
|
|
|
|
|
2012-01-26 15:03:21 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS_AMBIGUOUS(nsGlobalWindow,
|
|
|
|
nsIScriptGlobalObject)
|
2007-01-04 22:31:26 +00:00
|
|
|
|
2011-11-26 10:14:29 +00:00
|
|
|
virtual NS_HIDDEN_(JSObject*)
|
2008-02-13 04:17:18 +00:00
|
|
|
GetCachedXBLPrototypeHandler(nsXBLPrototypeHandler* aKey);
|
|
|
|
|
|
|
|
virtual NS_HIDDEN_(void)
|
|
|
|
CacheXBLPrototypeHandler(nsXBLPrototypeHandler* aKey,
|
2011-12-18 10:05:12 +00:00
|
|
|
nsScriptObjectHolder<JSObject>& aHandler);
|
2008-02-13 04:17:18 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool TakeFocus(bool aFocus, PRUint32 aFocusMethod);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
virtual void SetReadyForFocus();
|
|
|
|
virtual void PageHidden();
|
2011-03-31 20:30:32 +00:00
|
|
|
virtual nsresult DispatchAsyncHashchange(nsIURI *aOldURI, nsIURI *aNewURI);
|
2011-03-01 07:08:56 +00:00
|
|
|
virtual nsresult DispatchSyncPopState();
|
2009-09-01 16:45:05 +00:00
|
|
|
|
2012-03-25 00:29:49 +00:00
|
|
|
virtual void EnableDeviceSensor(PRUint32 aType);
|
|
|
|
virtual void DisableDeviceSensor(PRUint32 aType);
|
|
|
|
|
2009-10-07 00:09:16 +00:00
|
|
|
virtual nsresult SetArguments(nsIArray *aArguments, nsIPrincipal *aOrigin);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool DOMWindowDumpEnabled();
|
2008-02-13 04:17:18 +00:00
|
|
|
|
2010-03-12 04:42:05 +00:00
|
|
|
void MaybeForgiveSpamCount();
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsClosedOrClosing() {
|
2010-03-12 04:42:05 +00:00
|
|
|
return (mIsClosed ||
|
|
|
|
mInClose ||
|
|
|
|
mHavePendingClose ||
|
|
|
|
mCleanedUp);
|
|
|
|
}
|
|
|
|
|
2010-08-27 15:49:08 +00:00
|
|
|
static void FirePopupBlockedEvent(nsIDOMDocument* aDoc,
|
|
|
|
nsIDOMWindow *aRequestingWindow, nsIURI *aPopupURI,
|
|
|
|
const nsAString &aPopupWindowName,
|
|
|
|
const nsAString &aPopupWindowFeatures);
|
|
|
|
|
2010-09-09 22:15:40 +00:00
|
|
|
virtual PRUint32 GetSerial() {
|
|
|
|
return mSerial;
|
|
|
|
}
|
|
|
|
|
2010-10-21 00:24:16 +00:00
|
|
|
static nsGlobalWindow* GetOuterWindowWithId(PRUint64 aWindowID) {
|
2011-09-03 23:43:22 +00:00
|
|
|
if (!sWindowsById) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-06-29 11:03:54 +00:00
|
|
|
nsGlobalWindow* outerWindow = sWindowsById->Get(aWindowID);
|
|
|
|
return outerWindow && !outerWindow->IsInnerWindow() ? outerWindow : nsnull;
|
2010-10-21 00:24:16 +00:00
|
|
|
}
|
|
|
|
|
2011-08-24 20:44:35 +00:00
|
|
|
static nsGlobalWindow* GetInnerWindowWithId(PRUint64 aInnerWindowID) {
|
2011-09-02 23:49:08 +00:00
|
|
|
if (!sWindowsById) {
|
|
|
|
return nsnull;
|
|
|
|
}
|
|
|
|
|
2011-08-24 20:44:35 +00:00
|
|
|
nsGlobalWindow* innerWindow = sWindowsById->Get(aInnerWindowID);
|
|
|
|
return innerWindow && innerWindow->IsInnerWindow() ? innerWindow : nsnull;
|
|
|
|
}
|
|
|
|
|
2011-05-25 06:31:59 +00:00
|
|
|
static bool HasIndexedDBSupport();
|
2011-01-12 17:35:31 +00:00
|
|
|
|
2011-06-23 10:39:48 +00:00
|
|
|
static bool HasPerformanceSupport();
|
|
|
|
|
2011-06-29 11:06:43 +00:00
|
|
|
static WindowByIdTable* GetWindowsTable() {
|
|
|
|
return sWindowsById;
|
|
|
|
}
|
|
|
|
|
2012-02-01 21:58:01 +00:00
|
|
|
void SizeOfIncludingThis(nsWindowSizes* aWindowSizes) const;
|
2011-06-29 11:06:43 +00:00
|
|
|
|
2012-01-26 15:03:21 +00:00
|
|
|
void UnmarkGrayTimers();
|
2012-03-13 00:56:07 +00:00
|
|
|
|
|
|
|
void AddEventTargetObject(nsDOMEventTargetHelper* aObject);
|
|
|
|
void RemoveEventTargetObject(nsDOMEventTargetHelper* aObject);
|
2012-03-04 16:02:00 +00:00
|
|
|
|
2012-07-13 22:39:46 +00:00
|
|
|
void NotifyIdleObserver(IdleObserverHolder* aIdleObserverHolder,
|
2012-06-29 08:32:21 +00:00
|
|
|
bool aCallOnidle);
|
2012-07-13 22:39:46 +00:00
|
|
|
nsresult HandleIdleActiveEvent();
|
2012-06-29 08:32:21 +00:00
|
|
|
bool ContainsIdleObserver(nsIIdleObserver* aIdleObserver, PRUint32 timeInS);
|
|
|
|
void HandleIdleObserverCallback();
|
|
|
|
|
2000-02-08 13:40:10 +00:00
|
|
|
protected:
|
2012-06-29 08:32:21 +00:00
|
|
|
// Array of idle observers that are notified of idle events.
|
|
|
|
nsTObserverArray<IdleObserverHolder> mIdleObservers;
|
|
|
|
|
|
|
|
// Idle timer used for function callbacks to notify idle observers.
|
|
|
|
nsCOMPtr<nsITimer> mIdleTimer;
|
|
|
|
|
|
|
|
// Idle fuzz time added to idle timer callbacks.
|
|
|
|
PRUint32 mIdleFuzzFactor;
|
|
|
|
|
|
|
|
// Index in mArrayIdleObservers
|
|
|
|
// Next idle observer to notify user idle status
|
|
|
|
PRInt32 mIdleCallbackIndex;
|
|
|
|
|
|
|
|
// If false then the topic is "active"
|
|
|
|
// If true then the topic is "idle"
|
|
|
|
bool mCurrentlyIdle;
|
|
|
|
|
|
|
|
// Set to true when a fuzz time needs to be applied
|
|
|
|
// to active notifications to the idle observer.
|
|
|
|
bool mAddActiveEventFuzzTime;
|
|
|
|
|
|
|
|
nsCOMPtr <nsIIdleService> mIdleService;
|
|
|
|
|
|
|
|
static bool sIdleObserversAPIFuzzTimeDisabled;
|
|
|
|
|
2011-03-31 20:30:32 +00:00
|
|
|
friend class HashchangeCallback;
|
2011-04-27 20:54:07 +00:00
|
|
|
friend class nsBarProp;
|
2011-03-31 20:30:32 +00:00
|
|
|
|
2012-05-11 00:56:21 +00:00
|
|
|
enum TriState {
|
|
|
|
TriState_Unknown = -1,
|
|
|
|
TriState_False,
|
|
|
|
TriState_True
|
|
|
|
};
|
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
// Object Management
|
2004-12-10 19:48:22 +00:00
|
|
|
virtual ~nsGlobalWindow();
|
2011-09-29 06:19:26 +00:00
|
|
|
void CleanUp(bool aIgnoreModalDialog);
|
2002-12-20 08:00:08 +00:00
|
|
|
void ClearControllers();
|
2010-01-28 18:35:20 +00:00
|
|
|
nsresult FinalClose();
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
|
2012-05-09 15:10:18 +00:00
|
|
|
inline void MaybeClearInnerWindow(nsGlobalWindow* aExpectedInner)
|
|
|
|
{
|
|
|
|
if(mInnerWindow == aExpectedInner) {
|
|
|
|
mInnerWindow = nsnull;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-15 11:06:39 +00:00
|
|
|
void FreeInnerObjects();
|
2012-04-05 22:33:20 +00:00
|
|
|
JSObject *CallerGlobal();
|
2008-01-30 05:30:11 +00:00
|
|
|
nsGlobalWindow *CallerInnerWindow();
|
2005-08-15 18:16:42 +00:00
|
|
|
|
2012-06-17 08:11:16 +00:00
|
|
|
// Only to be called on an inner window.
|
|
|
|
// aDocument must not be null.
|
|
|
|
void InnerSetNewDocument(nsIDocument* aDocument);
|
2010-03-13 00:59:18 +00:00
|
|
|
|
2009-10-07 00:09:16 +00:00
|
|
|
nsresult DefineArgumentsProperty(nsIArray *aArguments);
|
2005-07-30 20:57:07 +00:00
|
|
|
|
2001-10-31 23:52:52 +00:00
|
|
|
// Get the parent, returns null if this is a toplevel window
|
2011-07-15 10:31:34 +00:00
|
|
|
nsIDOMWindow* GetParentInternal();
|
2001-10-31 23:52:52 +00:00
|
|
|
|
2004-05-03 21:48:36 +00:00
|
|
|
// popup tracking
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsPopupSpamWindow()
|
2005-07-30 20:57:07 +00:00
|
|
|
{
|
2005-08-12 04:11:00 +00:00
|
|
|
if (IsInnerWindow() && !mOuterWindow) {
|
2011-10-17 14:59:28 +00:00
|
|
|
return false;
|
2005-08-12 04:11:00 +00:00
|
|
|
}
|
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
return GetOuterWindowInternal()->mIsPopupSpam;
|
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
void SetPopupSpamWindow(bool aPopup)
|
2005-07-30 20:57:07 +00:00
|
|
|
{
|
2005-08-12 04:11:00 +00:00
|
|
|
if (IsInnerWindow() && !mOuterWindow) {
|
|
|
|
NS_ERROR("SetPopupSpamWindow() called on inner window w/o an outer!");
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
GetOuterWindowInternal()->mIsPopupSpam = aPopup;
|
|
|
|
}
|
2004-05-03 21:48:36 +00:00
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
// Window Control Functions
|
2006-02-07 20:46:39 +00:00
|
|
|
/**
|
|
|
|
* @param aURL the URL to load in the new window
|
|
|
|
* @param aName the name to use for the new window
|
|
|
|
* @param aOptions the window options to use for the new window
|
|
|
|
* @param aDialog true when called from variants of OpenDialog. If this is
|
|
|
|
* true, this method will skip popup blocking checks. The
|
|
|
|
* aDialog argument is passed on to the window watcher.
|
|
|
|
* @param aCalledNoScript true when called via the [noscript] open()
|
|
|
|
* and openDialog() methods. When this is true, we do
|
|
|
|
* NOT want to use the JS stack for things like caller
|
|
|
|
* determination.
|
|
|
|
* @param aDoJSFixups true when this is the content-accessible JS version of
|
|
|
|
* window opening. When true, popups do not cause us to
|
|
|
|
* throw, we save the caller's principal in the new window
|
|
|
|
* for later consumption, and we make sure that there is a
|
|
|
|
* document in the newly-opened window. Note that this
|
|
|
|
* last will only be done if the newly-opened window is
|
|
|
|
* non-chrome.
|
|
|
|
* @param argv The arguments to pass to the new window. The first
|
|
|
|
* three args, if present, will be aURL, aName, and aOptions. So
|
|
|
|
* this param only matters if there are more than 3 arguments.
|
|
|
|
* @param argc The number of arguments in argv.
|
|
|
|
* @param aExtraArgument Another way to pass arguments in. This is mutually
|
|
|
|
* exclusive with the argv/argc approach.
|
2006-08-29 22:25:12 +00:00
|
|
|
* @param aJSCallerContext The calling script's context. This must be nsnull
|
|
|
|
* when aCalledNoScript is true.
|
2006-02-07 20:46:39 +00:00
|
|
|
* @param aReturn [out] The window that was opened, if any.
|
|
|
|
*
|
|
|
|
* @note that the boolean args are const because the function shouldn't be
|
|
|
|
* messing with them. That also makes it easier for the compiler to sort out
|
|
|
|
* its build warning stuff.
|
|
|
|
*/
|
|
|
|
NS_HIDDEN_(nsresult) OpenInternal(const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aDialog,
|
|
|
|
bool aContentModal,
|
|
|
|
bool aCalledNoScript,
|
|
|
|
bool aDoJSFixups,
|
2006-06-13 03:07:47 +00:00
|
|
|
nsIArray *argv,
|
2006-02-07 20:46:39 +00:00
|
|
|
nsISupports *aExtraArgument,
|
2006-07-11 00:27:05 +00:00
|
|
|
nsIPrincipal *aCalleePrincipal,
|
2006-08-29 22:25:12 +00:00
|
|
|
JSContext *aJSCallerContext,
|
2006-02-07 20:46:39 +00:00
|
|
|
nsIDOMWindow **aReturn);
|
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
static void CloseWindow(nsISupports* aWindow);
|
|
|
|
|
|
|
|
// Timeout Functions
|
2010-07-15 13:59:24 +00:00
|
|
|
// Language agnostic timeout function (all args passed).
|
|
|
|
// |interval| is in milliseconds.
|
2006-06-13 03:07:47 +00:00
|
|
|
nsresult SetTimeoutOrInterval(nsIScriptTimeoutHandler *aHandler,
|
|
|
|
PRInt32 interval,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aIsInterval, PRInt32 *aReturn);
|
2006-06-13 03:07:47 +00:00
|
|
|
nsresult ClearTimeoutOrInterval(PRInt32 aTimerID);
|
|
|
|
|
|
|
|
// JS specific timeout functions (JS args grabbed from context).
|
2011-09-29 06:19:26 +00:00
|
|
|
nsresult SetTimeoutOrInterval(bool aIsInterval, PRInt32* aReturn);
|
2011-06-29 19:49:42 +00:00
|
|
|
nsresult ResetTimersForNonBackgroundWindow();
|
2006-06-13 03:07:47 +00:00
|
|
|
|
|
|
|
// The timeout implementation functions.
|
|
|
|
void RunTimeout(nsTimeout *aTimeout);
|
2010-03-23 22:35:15 +00:00
|
|
|
void RunTimeout() { RunTimeout(nsnull); }
|
2012-04-24 18:16:29 +00:00
|
|
|
// Return true if |aTimeout| was cleared while its handler ran.
|
|
|
|
bool RunTimeoutHandler(nsTimeout* aTimeout, nsIScriptContext* aScx);
|
|
|
|
// Return true if |aTimeout| needs to be reinserted into the timeout list.
|
|
|
|
bool RescheduleTimeout(nsTimeout* aTimeout, const TimeStamp& now,
|
|
|
|
bool aRunningPendingTimeouts);
|
2006-06-13 03:07:47 +00:00
|
|
|
|
2005-05-08 21:44:16 +00:00
|
|
|
void ClearAllTimeouts();
|
2006-09-21 03:46:46 +00:00
|
|
|
// Insert aTimeout into the list, before all timeouts that would
|
|
|
|
// fire after it, but no earlier than mTimeoutInsertionPoint, if any.
|
|
|
|
void InsertTimeoutIntoList(nsTimeout *aTimeout);
|
2001-10-24 06:58:11 +00:00
|
|
|
static void TimerCallback(nsITimer *aTimer, void *aClosure);
|
2001-01-18 07:44:29 +00:00
|
|
|
|
|
|
|
// Helper Functions
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
nsresult GetTreeOwner(nsIDocShellTreeOwner** aTreeOwner);
|
|
|
|
nsresult GetTreeOwner(nsIBaseWindow** aTreeOwner);
|
|
|
|
nsresult GetWebBrowserChrome(nsIWebBrowserChrome** aBrowserChrome);
|
2009-09-03 03:57:46 +00:00
|
|
|
// GetScrollFrame does not flush. Callers should do it themselves as needed,
|
|
|
|
// depending on which info they actually want off the scrollable frame.
|
|
|
|
nsIScrollableFrame *GetScrollFrame();
|
2001-06-20 01:25:09 +00:00
|
|
|
nsresult SecurityCheckURL(const char *aURL);
|
2004-12-07 16:09:23 +00:00
|
|
|
nsresult BuildURIfromBase(const char *aURL,
|
|
|
|
nsIURI **aBuiltURI,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool *aFreeSecurityPass, JSContext **aCXused);
|
|
|
|
bool PopupWhitelisted();
|
2009-09-16 18:46:05 +00:00
|
|
|
PopupControlState RevisePopupAbuseLevel(PopupControlState);
|
2011-09-29 06:19:26 +00:00
|
|
|
void FireAbuseEvents(bool aBlocked, bool aWindow,
|
2004-02-10 18:22:23 +00:00
|
|
|
const nsAString &aPopupURL,
|
2005-11-01 01:41:00 +00:00
|
|
|
const nsAString &aPopupWindowName,
|
2004-02-10 18:22:23 +00:00
|
|
|
const nsAString &aPopupWindowFeatures);
|
2006-05-03 21:53:08 +00:00
|
|
|
void FireOfflineStatusEvent();
|
2012-06-29 08:32:21 +00:00
|
|
|
|
|
|
|
nsresult ScheduleNextIdleObserverCallback();
|
|
|
|
PRUint32 GetFuzzTimeMS();
|
|
|
|
nsresult ScheduleActiveTimerCallback();
|
|
|
|
PRUint32 FindInsertionIndex(IdleObserverHolder* aIdleObserver);
|
|
|
|
virtual nsresult RegisterIdleObserver(nsIIdleObserver* aIdleObserverPtr);
|
|
|
|
nsresult FindIndexOfElementToRemove(nsIIdleObserver* aIdleObserver,
|
|
|
|
PRInt32* aRemoveElementIndex);
|
|
|
|
virtual nsresult UnregisterIdleObserver(nsIIdleObserver* aIdleObserverPtr);
|
|
|
|
|
2011-03-31 20:30:32 +00:00
|
|
|
nsresult FireHashchange(const nsAString &aOldURL, const nsAString &aNewURL);
|
2009-11-27 05:01:43 +00:00
|
|
|
|
2004-05-27 22:08:42 +00:00
|
|
|
void FlushPendingNotifications(mozFlushType aType);
|
2002-02-05 05:47:22 +00:00
|
|
|
void EnsureReflowFlushAndPaint();
|
2001-01-18 07:44:29 +00:00
|
|
|
nsresult CheckSecurityWidthAndHeight(PRInt32* width, PRInt32* height);
|
|
|
|
nsresult CheckSecurityLeftAndTop(PRInt32* left, PRInt32* top);
|
2010-12-21 22:35:09 +00:00
|
|
|
|
|
|
|
// Arguments to this function should have values in app units
|
|
|
|
nsresult SetCSSViewportWidthAndHeight(nscoord width, nscoord height);
|
|
|
|
// Arguments to this function should have values in device pixels
|
|
|
|
nsresult SetDocShellWidthAndHeight(PRInt32 width, PRInt32 height);
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
static bool CanSetProperty(const char *aPrefName);
|
2002-05-17 22:24:06 +00:00
|
|
|
|
2006-07-28 22:06:39 +00:00
|
|
|
static void MakeScriptDialogTitle(nsAString &aOutTitle);
|
2000-02-08 13:40:10 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool CanMoveResizeWindows();
|
2008-03-19 20:27:34 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetBlurSuppression();
|
2003-02-24 20:15:59 +00:00
|
|
|
|
2004-08-08 17:39:20 +00:00
|
|
|
// If aDoFlush is true, we'll flush our own layout; otherwise we'll try to
|
|
|
|
// just flush our parent and only flush ourselves if we think we need to.
|
|
|
|
nsresult GetScrollXY(PRInt32* aScrollX, PRInt32* aScrollY,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aDoFlush);
|
2003-04-15 13:40:46 +00:00
|
|
|
nsresult GetScrollMaxXY(PRInt32* aScrollMaxX, PRInt32* aScrollMaxY);
|
2012-06-29 08:32:21 +00:00
|
|
|
|
2008-04-01 22:20:45 +00:00
|
|
|
nsresult GetOuterSize(nsIntSize* aSizeCSSPixels);
|
2011-09-29 06:19:26 +00:00
|
|
|
nsresult SetOuterSize(PRInt32 aLengthCSSPixels, bool aIsWidth);
|
2009-07-30 03:16:44 +00:00
|
|
|
nsRect GetInnerScreenRect();
|
2003-04-15 13:40:46 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsFrame()
|
2004-07-05 15:51:31 +00:00
|
|
|
{
|
|
|
|
return GetParentInternal() != nsnull;
|
|
|
|
}
|
|
|
|
|
2006-02-07 20:46:39 +00:00
|
|
|
// If aLookForCallerOnJSStack is true, this method will look at the JS stack
|
|
|
|
// to determine who the caller is. If it's false, it'll use |this| as the
|
|
|
|
// caller.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool WindowExists(const nsAString& aName, bool aLookForCallerOnJSStack);
|
2005-01-11 19:36:40 +00:00
|
|
|
|
2005-03-06 18:43:07 +00:00
|
|
|
already_AddRefed<nsIWidget> GetMainWidget();
|
2009-07-15 09:54:30 +00:00
|
|
|
nsIWidget* GetNearestWidget();
|
2005-03-06 18:43:07 +00:00
|
|
|
|
2005-08-15 18:16:42 +00:00
|
|
|
void Freeze()
|
|
|
|
{
|
2005-09-28 02:44:16 +00:00
|
|
|
NS_ASSERTION(!IsFrozen(), "Double-freezing?");
|
2011-10-17 14:59:28 +00:00
|
|
|
mIsFrozen = true;
|
2011-05-22 21:30:07 +00:00
|
|
|
NotifyDOMWindowFrozen(this);
|
2005-08-15 18:16:42 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void Thaw()
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
mIsFrozen = false;
|
2011-05-22 21:30:07 +00:00
|
|
|
NotifyDOMWindowThawed(this);
|
2005-08-15 18:16:42 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsInModalState();
|
2006-07-05 22:48:04 +00:00
|
|
|
|
2006-09-21 03:46:46 +00:00
|
|
|
nsTimeout* FirstTimeout() {
|
|
|
|
// Note: might not actually return an nsTimeout. Use IsTimeout to check.
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsTimeout*>(PR_LIST_HEAD(&mTimeouts));
|
2006-09-21 03:46:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
nsTimeout* LastTimeout() {
|
|
|
|
// Note: might not actually return an nsTimeout. Use IsTimeout to check.
|
2007-07-08 07:08:04 +00:00
|
|
|
return static_cast<nsTimeout*>(PR_LIST_TAIL(&mTimeouts));
|
2006-09-21 03:46:46 +00:00
|
|
|
}
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool IsTimeout(PRCList* aList) {
|
2006-09-21 03:46:46 +00:00
|
|
|
return aList != &mTimeouts;
|
|
|
|
}
|
|
|
|
|
2009-02-10 08:29:53 +00:00
|
|
|
// Convenience functions for the many methods that need to scale
|
|
|
|
// from device to CSS pixels or vice versa. Note: if a presentation
|
|
|
|
// context is not available, they will assume a 1:1 ratio.
|
|
|
|
PRInt32 DevToCSSIntPixels(PRInt32 px);
|
|
|
|
PRInt32 CSSToDevIntPixels(PRInt32 px);
|
|
|
|
nsIntSize DevToCSSIntPixels(nsIntSize px);
|
|
|
|
nsIntSize CSSToDevIntPixels(nsIntSize px);
|
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
virtual void SetFocusedNode(nsIContent* aNode,
|
|
|
|
PRUint32 aFocusMethod = 0,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aNeedsFocus = false);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
|
|
|
virtual PRUint32 GetFocusMethod();
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual bool ShouldShowFocusRing();
|
2010-04-21 14:53:42 +00:00
|
|
|
|
|
|
|
virtual void SetKeyboardIndicators(UIStateChangeType aShowAccelerators,
|
|
|
|
UIStateChangeType aShowFocusRings);
|
2011-09-29 06:19:26 +00:00
|
|
|
virtual void GetKeyboardIndicators(bool* aShowAccelerators,
|
|
|
|
bool* aShowFocusRings);
|
2010-04-21 14:53:42 +00:00
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
void UpdateCanvasFocus(bool aFocusChanged, nsIContent* aNewContent);
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
2010-02-20 16:07:03 +00:00
|
|
|
already_AddRefed<nsPIWindowRoot> GetTopWindowRoot();
|
|
|
|
|
2008-02-13 23:41:17 +00:00
|
|
|
static void NotifyDOMWindowDestroyed(nsGlobalWindow* aWindow);
|
2010-05-14 21:17:52 +00:00
|
|
|
void NotifyWindowIDDestroyed(const char* aTopic);
|
2011-05-22 21:30:07 +00:00
|
|
|
|
|
|
|
static void NotifyDOMWindowFrozen(nsGlobalWindow* aWindow);
|
|
|
|
static void NotifyDOMWindowThawed(nsGlobalWindow* aWindow);
|
2012-06-29 08:32:21 +00:00
|
|
|
|
2010-06-01 20:36:16 +00:00
|
|
|
void ClearStatus();
|
2008-02-13 23:41:17 +00:00
|
|
|
|
2010-06-16 11:43:36 +00:00
|
|
|
virtual void UpdateParentTarget();
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool GetIsTabModalPromptAllowed();
|
2011-02-16 18:27:25 +00:00
|
|
|
|
2011-03-26 01:05:55 +00:00
|
|
|
inline PRInt32 DOMMinTimeoutValue() const;
|
|
|
|
|
2012-03-24 08:18:21 +00:00
|
|
|
nsresult CreateOuterObject(nsGlobalWindow* aNewInner);
|
|
|
|
nsresult SetOuterObject(JSContext* aCx, JSObject* aOuterObject);
|
2012-03-30 17:31:16 +00:00
|
|
|
nsresult CloneStorageEvent(const nsAString& aType,
|
|
|
|
nsCOMPtr<nsIDOMStorageEvent>& aEvent);
|
2012-03-24 08:18:21 +00:00
|
|
|
|
2012-05-11 00:56:21 +00:00
|
|
|
void SetIsApp(bool aValue);
|
2012-05-16 10:40:09 +00:00
|
|
|
nsresult SetApp(const nsAString& aManifestURL);
|
2012-07-03 00:16:55 +00:00
|
|
|
nsresult GetApp(mozIDOMApplication** aApplication);
|
2012-05-11 00:56:21 +00:00
|
|
|
|
2012-05-23 15:27:10 +00:00
|
|
|
// Implements Get{Real,Scriptable}Top.
|
|
|
|
nsresult GetTopImpl(nsIDOMWindow **aWindow, bool aScriptable);
|
|
|
|
|
2001-02-17 19:02:25 +00:00
|
|
|
// When adding new member variables, be careful not to create cycles
|
|
|
|
// through JavaScript. If there is any chance that a member variable
|
|
|
|
// could own objects that are implemented in JavaScript, then those
|
|
|
|
// objects will keep the global object (this object) alive. To prevent
|
|
|
|
// these cycles, ownership of such members must be released in
|
2012-05-25 19:00:32 +00:00
|
|
|
// |CleanUp| and |DetachFromDocShell|.
|
2005-07-30 20:57:07 +00:00
|
|
|
|
2005-08-19 20:09:38 +00:00
|
|
|
// This member is also used on both inner and outer windows, but
|
|
|
|
// for slightly different purposes. On inner windows it means the
|
|
|
|
// inner window is held onto by session history and should not
|
|
|
|
// change. On outer windows it means that the window is in a state
|
|
|
|
// where we don't want to force creation of a new inner window since
|
|
|
|
// we're in the middle of doing just that.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsFrozen : 1;
|
2012-06-29 08:32:21 +00:00
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
// These members are only used on outer window objects. Make sure
|
|
|
|
// you never set any of these on an inner object!
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mFullScreen : 1;
|
|
|
|
bool mIsClosed : 1;
|
|
|
|
bool mInClose : 1;
|
2005-10-14 21:56:21 +00:00
|
|
|
// mHavePendingClose means we've got a termination function set to
|
|
|
|
// close us when the JS stops executing or that we have a close
|
|
|
|
// event posted. If this is set, just ignore window.close() calls.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mHavePendingClose : 1;
|
|
|
|
bool mHadOriginalOpener : 1;
|
|
|
|
bool mIsPopupSpam : 1;
|
2005-07-30 20:57:07 +00:00
|
|
|
|
2006-08-29 22:25:12 +00:00
|
|
|
// Indicates whether scripts are allowed to close this window.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mBlockScriptedClosingFlag : 1;
|
2006-08-29 22:25:12 +00:00
|
|
|
|
2006-05-03 21:53:08 +00:00
|
|
|
// Track what sorts of events we need to fire when thawed
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mFireOfflineStatusChangeEventOnThaw : 1;
|
2012-06-29 08:32:21 +00:00
|
|
|
bool mNotifyIdleObserversIdleOnThaw : 1;
|
|
|
|
bool mNotifyIdleObserversActiveOnThaw : 1;
|
2006-11-17 01:06:41 +00:00
|
|
|
|
|
|
|
// Indicates whether we're in the middle of creating an initializing
|
|
|
|
// a new inner window object.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mCreatingInnerWindow : 1;
|
2007-08-02 23:34:38 +00:00
|
|
|
|
|
|
|
// Fast way to tell if this is a chrome window (without having to QI).
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mIsChrome : 1;
|
2007-08-02 23:34:38 +00:00
|
|
|
|
2011-01-23 19:51:00 +00:00
|
|
|
// Hack to indicate whether a chrome window needs its message manager
|
|
|
|
// to be disconnected, since clean up code is shared in the global
|
|
|
|
// window superclass.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mCleanMessageManager : 1;
|
2011-01-23 19:51:00 +00:00
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
// Indicates that the current document has never received a document focus
|
|
|
|
// event.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mNeedsFocus : 1;
|
|
|
|
bool mHasFocus : 1;
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
|
2010-04-21 14:53:42 +00:00
|
|
|
// whether to show keyboard accelerators
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mShowAccelerators : 1;
|
2010-04-21 14:53:42 +00:00
|
|
|
|
|
|
|
// whether to show focus rings
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mShowFocusRings : 1;
|
2010-04-21 14:53:42 +00:00
|
|
|
|
|
|
|
// when true, show focus rings for the current focused content only.
|
|
|
|
// This will be reset when another element is focused
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mShowFocusRingForContent : 1;
|
2010-04-21 14:53:42 +00:00
|
|
|
|
2010-05-13 12:19:50 +00:00
|
|
|
// true if tab navigation has occurred for this window. Focus rings
|
2010-04-21 14:53:42 +00:00
|
|
|
// should be displayed.
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mFocusByKeyOccurred : 1;
|
2010-04-21 14:53:42 +00:00
|
|
|
|
2010-05-14 21:17:52 +00:00
|
|
|
// whether we've sent the destroy notification for our window id
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mNotifiedIDDestroyed : 1;
|
2010-05-14 21:17:52 +00:00
|
|
|
|
2012-05-11 00:56:21 +00:00
|
|
|
// Whether the window is the window of an application frame.
|
|
|
|
// This is TriState_Unknown if the object is the content window of an
|
|
|
|
// iframe which is neither mozBrowser nor mozApp.
|
|
|
|
TriState mIsApp : 2;
|
|
|
|
|
2001-01-18 07:44:29 +00:00
|
|
|
nsCOMPtr<nsIScriptContext> mContext;
|
2008-02-08 21:09:36 +00:00
|
|
|
nsWeakPtr mOpener;
|
2001-01-18 07:44:29 +00:00
|
|
|
nsCOMPtr<nsIControllers> mControllers;
|
2006-06-13 03:07:47 +00:00
|
|
|
nsCOMPtr<nsIArray> mArguments;
|
|
|
|
nsCOMPtr<nsIArray> mArgumentsLast;
|
2009-10-07 00:09:16 +00:00
|
|
|
nsCOMPtr<nsIPrincipal> mArgumentsOrigin;
|
2011-11-02 13:44:16 +00:00
|
|
|
nsRefPtr<Navigator> mNavigator;
|
2004-12-10 19:48:22 +00:00
|
|
|
nsRefPtr<nsScreen> mScreen;
|
2011-06-23 10:39:48 +00:00
|
|
|
nsRefPtr<nsPerformance> mPerformance;
|
2003-06-20 23:51:46 +00:00
|
|
|
nsRefPtr<nsDOMWindowList> mFrames;
|
2004-12-10 19:48:22 +00:00
|
|
|
nsRefPtr<nsBarProp> mMenubar;
|
|
|
|
nsRefPtr<nsBarProp> mToolbar;
|
|
|
|
nsRefPtr<nsBarProp> mLocationbar;
|
|
|
|
nsRefPtr<nsBarProp> mPersonalbar;
|
|
|
|
nsRefPtr<nsBarProp> mStatusbar;
|
|
|
|
nsRefPtr<nsBarProp> mScrollbars;
|
2012-04-02 02:23:51 +00:00
|
|
|
nsRefPtr<nsDOMWindowUtils> mWindowUtils;
|
2001-01-18 07:44:29 +00:00
|
|
|
nsString mStatus;
|
|
|
|
nsString mDefaultStatus;
|
2006-06-13 03:07:47 +00:00
|
|
|
// index 0->language_id 1, so index MAX-1 == language_id MAX
|
2006-05-03 21:53:08 +00:00
|
|
|
nsGlobalWindowObserver* mObserver;
|
2010-09-29 16:56:46 +00:00
|
|
|
#ifndef MOZ_DISABLE_DOMCRYPTO
|
2001-01-18 07:44:29 +00:00
|
|
|
nsCOMPtr<nsIDOMCrypto> mCrypto;
|
2010-09-29 16:56:46 +00:00
|
|
|
#endif
|
2009-05-16 13:59:30 +00:00
|
|
|
nsCOMPtr<nsIDOMStorage> mLocalStorage;
|
2010-01-28 14:53:53 +00:00
|
|
|
nsCOMPtr<nsIDOMStorage> mSessionStorage;
|
2009-03-18 23:43:45 +00:00
|
|
|
|
2010-06-29 18:46:39 +00:00
|
|
|
nsCOMPtr<nsIXPConnectJSObjectHolder> mInnerWindowHolder;
|
2006-02-20 18:52:42 +00:00
|
|
|
nsCOMPtr<nsIPrincipal> mOpenerScriptPrincipal; // strong; used to determine
|
|
|
|
// whether to clear scope
|
2005-07-30 20:57:07 +00:00
|
|
|
|
2005-08-12 04:11:00 +00:00
|
|
|
// These member variable are used only on inner windows.
|
2011-06-24 02:18:01 +00:00
|
|
|
nsRefPtr<nsEventListenerManager> mListenerManager;
|
2011-07-08 18:04:25 +00:00
|
|
|
// mTimeouts is generally sorted by mWhen, unless mTimeoutInsertionPoint is
|
|
|
|
// non-null. In that case, the dummy timeout pointed to by
|
|
|
|
// mTimeoutInsertionPoint may have a later mWhen than some of the timeouts
|
|
|
|
// that come after it.
|
2006-09-21 03:46:46 +00:00
|
|
|
PRCList mTimeouts;
|
|
|
|
// If mTimeoutInsertionPoint is non-null, insertions should happen after it.
|
2011-07-08 18:04:25 +00:00
|
|
|
// This is a dummy timeout at the moment; if that ever changes, the logic in
|
|
|
|
// ResetTimersForNonBackgroundWindow needs to change.
|
2006-09-21 03:46:46 +00:00
|
|
|
nsTimeout* mTimeoutInsertionPoint;
|
2005-08-12 04:11:00 +00:00
|
|
|
PRUint32 mTimeoutPublicIdCounter;
|
|
|
|
PRUint32 mTimeoutFiringDepth;
|
2010-08-07 00:17:33 +00:00
|
|
|
nsRefPtr<nsLocation> mLocation;
|
2011-02-01 17:19:35 +00:00
|
|
|
nsRefPtr<nsHistory> mHistory;
|
2003-06-18 23:48:57 +00:00
|
|
|
|
2005-08-12 04:11:00 +00:00
|
|
|
// These member variables are used on both inner and the outer windows.
|
2005-07-31 16:44:28 +00:00
|
|
|
nsCOMPtr<nsIPrincipal> mDocumentPrincipal;
|
2005-08-12 04:11:00 +00:00
|
|
|
JSObject* mJSObject;
|
2005-07-31 16:44:28 +00:00
|
|
|
|
2011-01-14 14:39:21 +00:00
|
|
|
typedef nsCOMArray<nsIDOMStorageEvent> nsDOMStorageEventArray;
|
2010-01-28 14:53:53 +00:00
|
|
|
nsDOMStorageEventArray mPendingStorageEvents;
|
2006-05-19 05:57:36 +00:00
|
|
|
|
2009-02-17 20:07:39 +00:00
|
|
|
PRUint32 mTimeoutsSuspendDepth;
|
|
|
|
|
Bug 178324, refactor focus by moving all focus handling into one place and simplifying it, add many tests, fixes many other bugs too numerous to mention in this small checkin comment, r=josh,smichaud,ere,dbaron,marco,neil,gavin,smaug,sr=smaug (CLOSED TREE)
2009-06-10 18:00:39 +00:00
|
|
|
// the method that was used to focus mFocusedNode
|
|
|
|
PRUint32 mFocusMethod;
|
|
|
|
|
2010-09-09 22:15:40 +00:00
|
|
|
PRUint32 mSerial;
|
|
|
|
|
2006-02-15 03:22:17 +00:00
|
|
|
#ifdef DEBUG
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mSetOpenerWindowCalled;
|
2008-04-28 21:51:11 +00:00
|
|
|
nsCOMPtr<nsIURI> mLastOpenedURI;
|
2006-02-15 03:22:17 +00:00
|
|
|
#endif
|
|
|
|
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mCleanedUp, mCallCleanUpAfterModalDialogCloses;
|
2010-03-12 04:42:05 +00:00
|
|
|
|
2008-01-16 21:54:33 +00:00
|
|
|
nsCOMPtr<nsIDOMOfflineResourceList> mApplicationCache;
|
|
|
|
|
2012-03-21 18:07:31 +00:00
|
|
|
nsDataHashtable<nsPtrHashKey<nsXBLPrototypeHandler>, JSObject*> mCachedXBLPrototypeHandlers;
|
2008-02-13 04:17:18 +00:00
|
|
|
|
2009-03-03 20:11:14 +00:00
|
|
|
nsCOMPtr<nsIDocument> mSuspendedDoc;
|
|
|
|
|
2010-06-28 16:44:30 +00:00
|
|
|
nsCOMPtr<nsIIDBFactory> mIndexedDB;
|
2010-06-23 19:46:08 +00:00
|
|
|
|
2010-09-17 01:24:14 +00:00
|
|
|
// In the case of a "trusted" dialog (@see PopupControlState), we
|
|
|
|
// set this counter to ensure a max of MAX_DIALOG_LIMIT
|
|
|
|
PRUint32 mDialogAbuseCount;
|
|
|
|
|
|
|
|
// This holds the time when the last modal dialog was shown, if two
|
|
|
|
// dialogs are shown within CONCURRENT_DIALOG_TIME_LIMIT the
|
|
|
|
// checkbox is shown. In the case of ShowModalDialog another Confirm
|
|
|
|
// dialog will be shown, the result of the checkbox/confirm dialog
|
|
|
|
// will be stored in mDialogDisabled variable.
|
|
|
|
TimeStamp mLastDialogQuitTime;
|
2011-09-29 06:19:26 +00:00
|
|
|
bool mDialogDisabled;
|
2010-09-17 01:24:14 +00:00
|
|
|
|
2010-11-23 08:50:55 +00:00
|
|
|
nsRefPtr<nsDOMMozURLProperty> mURLProperty;
|
|
|
|
|
2012-03-13 00:56:07 +00:00
|
|
|
nsTHashtable<nsPtrHashKey<nsDOMEventTargetHelper> > mEventTargetObjects;
|
|
|
|
|
2012-03-25 00:30:03 +00:00
|
|
|
nsTArray<PRUint32> mEnabledSensors;
|
|
|
|
|
2012-05-16 10:40:47 +00:00
|
|
|
// The application associated with this window.
|
|
|
|
// This should only be non-null if mIsApp's value is TriState_True.
|
|
|
|
nsCOMPtr<mozIDOMApplication> mApp;
|
|
|
|
|
Landing the XPCDOM_20010329_BRANCH branch, changes mostly done by jband@netscape.com and jst@netscape.com, also some changes done by shaver@mozilla.org, peterv@netscape.com and markh@activestate.com. r= and sr= by vidur@netscape.com, jband@netscape.com, jst@netscpae.com, danm@netscape.com, hyatt@netscape.com, shaver@mozilla.org, dbradley@netscape.com, rpotts@netscape.com.
2001-05-08 17:42:36 +00:00
|
|
|
friend class nsDOMScriptableHelper;
|
2004-06-20 16:42:13 +00:00
|
|
|
friend class nsDOMWindowUtils;
|
2008-05-02 19:26:47 +00:00
|
|
|
friend class PostMessageEvent;
|
2010-10-21 00:24:16 +00:00
|
|
|
|
2011-06-29 11:03:54 +00:00
|
|
|
static WindowByIdTable* sWindowsById;
|
2011-08-14 17:22:29 +00:00
|
|
|
static bool sWarnedAboutWindowInternal;
|
1998-07-24 05:05:42 +00:00
|
|
|
};
|
|
|
|
|
2002-02-09 03:36:55 +00:00
|
|
|
/*
|
2004-12-10 19:48:22 +00:00
|
|
|
* nsGlobalChromeWindow inherits from nsGlobalWindow. It is the global
|
2002-02-09 03:36:55 +00:00
|
|
|
* object created for a Chrome Window only.
|
|
|
|
*/
|
2004-12-10 19:48:22 +00:00
|
|
|
class nsGlobalChromeWindow : public nsGlobalWindow,
|
2002-02-09 03:36:55 +00:00
|
|
|
public nsIDOMChromeWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMChromeWindow interface
|
|
|
|
NS_DECL_NSIDOMCHROMEWINDOW
|
|
|
|
|
2005-07-30 20:57:07 +00:00
|
|
|
nsGlobalChromeWindow(nsGlobalWindow *aOuterWindow)
|
|
|
|
: nsGlobalWindow(aOuterWindow)
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
mIsChrome = true;
|
|
|
|
mCleanMessageManager = true;
|
2011-01-23 19:51:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
~nsGlobalChromeWindow()
|
|
|
|
{
|
|
|
|
NS_ABORT_IF_FALSE(mCleanMessageManager,
|
|
|
|
"chrome windows may always disconnect the msg manager");
|
|
|
|
if (mMessageManager) {
|
|
|
|
static_cast<nsFrameMessageManager *>(
|
|
|
|
mMessageManager.get())->Disconnect();
|
|
|
|
}
|
|
|
|
|
2011-10-17 14:59:28 +00:00
|
|
|
mCleanMessageManager = false;
|
2005-07-30 20:57:07 +00:00
|
|
|
}
|
|
|
|
|
2011-06-21 14:51:49 +00:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsGlobalChromeWindow,
|
|
|
|
nsGlobalWindow)
|
2007-03-08 11:17:16 +00:00
|
|
|
|
2004-12-07 16:09:23 +00:00
|
|
|
nsCOMPtr<nsIBrowserDOMWindow> mBrowserDOMWindow;
|
2010-05-18 12:28:37 +00:00
|
|
|
nsCOMPtr<nsIChromeFrameMessageManager> mMessageManager;
|
2002-02-09 03:36:55 +00:00
|
|
|
};
|
|
|
|
|
2007-07-26 17:52:26 +00:00
|
|
|
/*
|
|
|
|
* nsGlobalModalWindow inherits from nsGlobalWindow. It is the global
|
|
|
|
* object created for a modal content windows only (i.e. not modal
|
|
|
|
* chrome dialogs).
|
|
|
|
*/
|
|
|
|
class nsGlobalModalWindow : public nsGlobalWindow,
|
|
|
|
public nsIDOMModalContentWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
nsGlobalModalWindow(nsGlobalWindow *aOuterWindow)
|
|
|
|
: nsGlobalWindow(aOuterWindow)
|
|
|
|
{
|
2011-10-17 14:59:28 +00:00
|
|
|
mIsModalContentWindow = true;
|
2007-07-26 17:52:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIDOMMODALCONTENTWINDOW
|
|
|
|
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsGlobalModalWindow, nsGlobalWindow)
|
|
|
|
|
2009-10-07 00:09:16 +00:00
|
|
|
virtual NS_HIDDEN_(nsresult) SetNewDocument(nsIDocument *aDocument,
|
2010-09-15 22:54:00 +00:00
|
|
|
nsISupports *aState,
|
2011-09-29 06:19:26 +00:00
|
|
|
bool aForceReuseInnerWindow);
|
2009-10-07 00:09:16 +00:00
|
|
|
|
2007-07-26 17:52:26 +00:00
|
|
|
protected:
|
|
|
|
nsCOMPtr<nsIVariant> mReturnValue;
|
|
|
|
};
|
|
|
|
|
2004-02-24 03:22:35 +00:00
|
|
|
/* factory function */
|
2012-04-14 13:03:16 +00:00
|
|
|
inline already_AddRefed<nsGlobalWindow>
|
|
|
|
NS_NewScriptGlobalObject(bool aIsChrome, bool aIsModalContentWindow)
|
|
|
|
{
|
|
|
|
nsRefPtr<nsGlobalWindow> global;
|
|
|
|
|
|
|
|
if (aIsChrome) {
|
|
|
|
global = new nsGlobalChromeWindow(nsnull);
|
|
|
|
} else if (aIsModalContentWindow) {
|
|
|
|
global = new nsGlobalModalWindow(nsnull);
|
|
|
|
} else {
|
|
|
|
global = new nsGlobalWindow(nsnull);
|
|
|
|
}
|
|
|
|
|
|
|
|
return global.forget();
|
|
|
|
}
|
2004-02-24 03:22:35 +00:00
|
|
|
|
1998-07-24 05:05:42 +00:00
|
|
|
#endif /* nsGlobalWindow_h___ */
|