2015-05-03 12:32:37 -07:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 04:12:37 -07: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/. */
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#ifndef nsGlobalWindow_h___
|
|
|
|
#define nsGlobalWindow_h___
|
|
|
|
|
2013-08-21 23:30:55 -07:00
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
|
2013-08-15 11:17:48 -07:00
|
|
|
#include "nsTHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsRefPtrHashtable.h"
|
2014-05-23 05:51:56 -07:00
|
|
|
#include "nsInterfaceHashtable.h"
|
2010-09-16 18:24:14 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Local Includes
|
|
|
|
// Helper Classes
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsDataHashtable.h"
|
2013-06-18 03:00:38 -07:00
|
|
|
#include "nsJSThingHashtable.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
|
|
|
|
// Interfaces Needed
|
|
|
|
#include "nsIBrowserDOMWindow.h"
|
2007-05-14 02:11:38 -07:00
|
|
|
#include "nsIDOMEventTarget.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIInterfaceRequestor.h"
|
|
|
|
#include "nsIDOMChromeWindow.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
2013-09-08 20:28:48 -07:00
|
|
|
#include "nsIScriptObjectPrincipal.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsITimer.h"
|
2007-07-26 10:52:26 -07:00
|
|
|
#include "nsIDOMModalContentWindow.h"
|
2014-03-16 23:56:53 -07:00
|
|
|
#include "mozilla/EventListenerManager.h"
|
2007-03-22 10:30:00 -07:00
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsSize.h"
|
|
|
|
#include "mozFlushType.h"
|
|
|
|
#include "prclist.h"
|
2014-05-23 00:33:24 -07:00
|
|
|
#include "mozilla/dom/StorageEvent.h"
|
|
|
|
#include "mozilla/dom/StorageEventBinding.h"
|
2014-07-24 18:30:07 -07:00
|
|
|
#include "mozilla/dom/UnionTypes.h"
|
2015-09-25 14:03:51 -07:00
|
|
|
#include "mozilla/ErrorResult.h"
|
2010-05-18 05:28:37 -07:00
|
|
|
#include "nsFrameMessageManager.h"
|
2012-11-01 07:06:22 -07:00
|
|
|
#include "mozilla/LinkedList.h"
|
2010-07-15 06:59:24 -07:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2012-04-20 13:43:48 -07:00
|
|
|
#include "nsWrapperCacheInlines.h"
|
2012-06-29 01:32:21 -07:00
|
|
|
#include "nsIIdleObserver.h"
|
2013-04-25 08:13:21 -07:00
|
|
|
#include "nsIDocument.h"
|
2013-01-29 05:44:01 -08:00
|
|
|
#include "mozilla/dom/EventTarget.h"
|
2014-08-05 15:01:32 -07:00
|
|
|
#include "mozilla/dom/WindowBinding.h"
|
2013-07-01 00:14:24 -07:00
|
|
|
#include "Units.h"
|
2013-09-06 10:50:24 -07:00
|
|
|
#include "nsComponentManagerUtils.h"
|
2015-03-29 07:59:08 -07:00
|
|
|
#include "nsSize.h"
|
2015-04-23 15:05:29 -07:00
|
|
|
#include "nsCheapSets.h"
|
2015-07-30 11:47:00 -07:00
|
|
|
#include "mozilla/dom/ImageBitmapSource.h"
|
2013-01-29 05:44:01 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#define DEFAULT_HOME_PAGE "www.mozilla.org"
|
|
|
|
#define PREF_BROWSER_STARTUP_HOMEPAGE "browser.startup.homepage"
|
|
|
|
|
2010-09-16 18:24:14 -07:00
|
|
|
// Amount of time allowed between alert/prompt/confirm before enabling
|
|
|
|
// the stop dialog checkbox.
|
2012-08-13 12:03:59 -07:00
|
|
|
#define DEFAULT_SUCCESSIVE_DIALOG_TIME_LIMIT 3 // 3 sec
|
2010-09-16 18:24:14 -07:00
|
|
|
|
2012-08-13 12:03:59 -07:00
|
|
|
// Maximum number of successive dialogs before we prompt users to disable
|
|
|
|
// dialogs for this window.
|
|
|
|
#define MAX_SUCCESSIVE_DIALOG_COUNT 5
|
2010-09-16 18:24:14 -07:00
|
|
|
|
2012-06-29 01:32:21 -07: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
|
|
|
|
|
2013-08-15 11:17:48 -07:00
|
|
|
class nsIArray;
|
|
|
|
class nsIBaseWindow;
|
2013-03-21 17:05:20 -07:00
|
|
|
class nsIContent;
|
2013-10-08 08:51:42 -07:00
|
|
|
class nsICSSDeclaration;
|
2013-08-15 11:17:48 -07:00
|
|
|
class nsIDocShellTreeOwner;
|
|
|
|
class nsIDOMOfflineResourceList;
|
2009-09-02 20:57:46 -07:00
|
|
|
class nsIScrollableFrame;
|
2007-10-13 09:42:44 -07:00
|
|
|
class nsIControllers;
|
2014-02-15 13:12:33 -08:00
|
|
|
class nsIJSID;
|
2013-08-15 11:17:48 -07:00
|
|
|
class nsIScriptContext;
|
|
|
|
class nsIScriptTimeoutHandler;
|
|
|
|
class nsIWebBrowserChrome;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-08-15 11:17:48 -07:00
|
|
|
class nsDOMWindowList;
|
2007-03-22 10:30:00 -07:00
|
|
|
class nsLocation;
|
|
|
|
class nsScreen;
|
|
|
|
class nsHistory;
|
|
|
|
class nsGlobalWindowObserver;
|
|
|
|
class nsGlobalWindow;
|
2012-04-01 19:23:51 -07:00
|
|
|
class nsDOMWindowUtils;
|
2012-06-29 01:32:21 -07:00
|
|
|
class nsIIdleService;
|
2013-09-06 19:15:49 -07:00
|
|
|
struct nsRect;
|
2007-05-29 02:45:30 -07:00
|
|
|
|
2012-02-01 13:58:01 -08:00
|
|
|
class nsWindowSizes;
|
|
|
|
|
2011-11-02 06:44:16 -07:00
|
|
|
namespace mozilla {
|
2014-03-31 23:13:50 -07:00
|
|
|
class DOMEventTargetHelper;
|
2011-11-02 06:44:16 -07:00
|
|
|
namespace dom {
|
2013-05-31 03:30:00 -07:00
|
|
|
class BarProp;
|
2014-02-27 15:39:00 -08:00
|
|
|
class Console;
|
2015-02-02 06:36:04 -08:00
|
|
|
class Crypto;
|
2014-03-27 21:03:03 -07:00
|
|
|
class External;
|
2013-10-08 08:51:42 -07:00
|
|
|
class Function;
|
2013-08-15 11:17:48 -07:00
|
|
|
class Gamepad;
|
2014-07-09 12:24:49 -07:00
|
|
|
class VRDevice;
|
2013-12-16 06:03:34 -08:00
|
|
|
class MediaQueryList;
|
2014-08-26 07:11:15 -07:00
|
|
|
class MozSelfSupport;
|
2011-11-02 06:44:16 -07:00
|
|
|
class Navigator;
|
2014-03-27 21:03:03 -07:00
|
|
|
class OwningExternalOrWindowProxy;
|
2014-07-24 18:30:07 -07:00
|
|
|
class Promise;
|
2015-06-17 03:44:27 -07:00
|
|
|
class PostMessageEvent;
|
2014-10-01 11:43:26 -07:00
|
|
|
struct RequestInit;
|
2014-11-20 03:58:00 -08:00
|
|
|
class RequestOrUSVString;
|
2014-04-10 09:09:40 -07:00
|
|
|
class Selection;
|
2013-04-07 05:19:56 -07:00
|
|
|
class SpeechSynthesis;
|
2014-01-07 04:16:07 -08:00
|
|
|
class WakeLock;
|
2015-03-02 05:22:00 -08:00
|
|
|
namespace cache {
|
|
|
|
class CacheStorage;
|
|
|
|
} // namespace cache
|
2013-03-31 01:18:30 -07:00
|
|
|
namespace indexedDB {
|
|
|
|
class IDBFactory;
|
|
|
|
} // namespace indexedDB
|
2011-11-02 06:44:16 -07:00
|
|
|
} // namespace dom
|
2014-07-09 12:24:49 -07:00
|
|
|
namespace gfx {
|
|
|
|
class VRHMDInfo;
|
|
|
|
} // namespace gfx
|
2011-11-02 06:44:16 -07:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2013-10-08 08:51:42 -07:00
|
|
|
extern already_AddRefed<nsIScriptTimeoutHandler>
|
2015-09-03 16:03:19 -07:00
|
|
|
NS_CreateJSTimeoutHandler(JSContext* aCx, nsGlobalWindow *aWindow,
|
2013-10-08 08:51:42 -07:00
|
|
|
mozilla::dom::Function& aFunction,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aArguments,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
extern already_AddRefed<nsIScriptTimeoutHandler>
|
|
|
|
NS_CreateJSTimeoutHandler(JSContext* aCx, nsGlobalWindow *aWindow,
|
|
|
|
const nsAString& aExpression,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
2015-05-03 23:57:52 -07:00
|
|
|
extern const js::Class OuterWindowProxyClass;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/*
|
|
|
|
* Timeout struct that holds information about each script
|
|
|
|
* timeout. Holds a strong reference to an nsIScriptTimeoutHandler, which
|
|
|
|
* abstracts the language specific cruft.
|
|
|
|
*/
|
2015-03-21 09:28:04 -07:00
|
|
|
struct nsTimeout final
|
2014-06-23 12:56:07 -07:00
|
|
|
: mozilla::LinkedListElement<nsTimeout>
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2014-06-23 12:56:07 -07:00
|
|
|
private:
|
2007-03-22 10:30:00 -07:00
|
|
|
~nsTimeout();
|
|
|
|
|
2014-06-23 12:56:07 -07:00
|
|
|
public:
|
|
|
|
nsTimeout();
|
|
|
|
|
2013-04-30 10:41:23 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_NATIVE_CLASS(nsTimeout)
|
|
|
|
NS_INLINE_DECL_CYCLE_COLLECTING_NATIVE_REFCOUNTING(nsTimeout)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-09-09 23:30:13 -07:00
|
|
|
nsresult InitTimer(uint32_t aDelay);
|
2012-07-24 10:50:45 -07:00
|
|
|
|
2013-04-30 10:41:23 -07:00
|
|
|
bool HasRefCntOne();
|
|
|
|
|
2007-03-22 10:30:00 -07: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-28 23:19:26 -07:00
|
|
|
bool mCleared;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// True if this is one of the timeouts that are currently running
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mRunning;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-06-29 12:49:42 -07:00
|
|
|
// True if this is a repeating/interval timer
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsInterval;
|
2011-06-29 12:49:42 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Returned as value of setTimeout()
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mPublicId;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2011-06-29 12:49:42 -07:00
|
|
|
// Interval in milliseconds
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mInterval;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2010-07-15 06:59:24 -07: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;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Principal with which to execute
|
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
|
|
|
|
|
|
|
// stack depth at which timeout is firing
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mFiringDepth;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-08-26 11:07:39 -07:00
|
|
|
//
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mNestingLevel;
|
2009-08-26 11:07:39 -07:00
|
|
|
|
2007-03-22 10:30:00 -07: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;
|
|
|
|
};
|
|
|
|
|
2012-06-29 01:32:21 -07:00
|
|
|
struct IdleObserverHolder
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIIdleObserver> mIdleObserver;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mTimeInS;
|
2012-07-13 15:39:46 -07:00
|
|
|
bool mPrevNotificationIdle;
|
2012-06-29 01:32:21 -07:00
|
|
|
|
|
|
|
IdleObserverHolder()
|
2012-07-13 15:39:46 -07:00
|
|
|
: mTimeInS(0), mPrevNotificationIdle(false)
|
2012-06-29 01:32:21 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(IdleObserverHolder);
|
|
|
|
}
|
|
|
|
|
2012-07-13 15:39:46 -07:00
|
|
|
IdleObserverHolder(const IdleObserverHolder& aOther)
|
|
|
|
: mIdleObserver(aOther.mIdleObserver), mTimeInS(aOther.mTimeInS),
|
|
|
|
mPrevNotificationIdle(aOther.mPrevNotificationIdle)
|
2012-06-29 01:32:21 -07:00
|
|
|
{
|
|
|
|
MOZ_COUNT_CTOR(IdleObserverHolder);
|
|
|
|
}
|
|
|
|
|
2012-07-13 15:39:46 -07:00
|
|
|
bool operator==(const IdleObserverHolder& aOther) const {
|
2012-06-29 01:32:21 -07:00
|
|
|
return
|
2012-07-13 15:39:46 -07:00
|
|
|
mIdleObserver == aOther.mIdleObserver &&
|
|
|
|
mTimeInS == aOther.mTimeInS;
|
2012-06-29 01:32:21 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
~IdleObserverHolder()
|
|
|
|
{
|
|
|
|
MOZ_COUNT_DTOR(IdleObserverHolder);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2013-05-17 10:43:19 -07:00
|
|
|
// Helper class to manage modal dialog arguments and all their quirks.
|
|
|
|
//
|
|
|
|
// Given our clunky embedding APIs, modal dialog arguments need to be passed
|
|
|
|
// as an nsISupports parameter to WindowWatcher, get stuck inside an array of
|
|
|
|
// length 1, and then passed back to the newly-created dialog.
|
|
|
|
//
|
|
|
|
// However, we need to track both the caller-passed value as well as the
|
|
|
|
// caller's, so that we can do an origin check (even for primitives) when the
|
|
|
|
// value is accessed. This class encapsulates that magic.
|
2013-05-17 10:43:19 -07:00
|
|
|
//
|
|
|
|
// We also use the same machinery for |returnValue|, which needs similar origin
|
|
|
|
// checks.
|
2015-03-21 11:35:18 -07:00
|
|
|
class DialogValueHolder final : public nsISupports
|
2013-05-17 10:43:19 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(DialogValueHolder)
|
|
|
|
|
|
|
|
DialogValueHolder(nsIPrincipal* aSubject, nsIVariant* aValue)
|
|
|
|
: mOrigin(aSubject)
|
|
|
|
, mValue(aValue) {}
|
2015-10-07 13:11:09 -07:00
|
|
|
nsresult Get(nsIPrincipal* aSubject, nsIVariant** aResult);
|
2014-04-08 04:40:37 -07:00
|
|
|
void Get(JSContext* aCx, JS::Handle<JSObject*> aScope, nsIPrincipal* aSubject,
|
2014-02-05 13:09:18 -08:00
|
|
|
JS::MutableHandle<JS::Value> aResult, mozilla::ErrorResult& aError)
|
|
|
|
{
|
|
|
|
if (aSubject->Subsumes(mOrigin)) {
|
|
|
|
aError = nsContentUtils::XPConnect()->VariantToJS(aCx, aScope,
|
|
|
|
mValue, aResult);
|
|
|
|
} else {
|
|
|
|
aResult.setUndefined();
|
|
|
|
}
|
|
|
|
}
|
2013-05-17 10:43:19 -07:00
|
|
|
private:
|
2014-06-23 12:56:07 -07:00
|
|
|
virtual ~DialogValueHolder() {}
|
|
|
|
|
2013-05-17 10:43:19 -07:00
|
|
|
nsCOMPtr<nsIPrincipal> mOrigin;
|
|
|
|
nsCOMPtr<nsIVariant> mValue;
|
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
//*****************************************************************************
|
|
|
|
// nsGlobalWindow: Global Object for Scripting
|
|
|
|
//*****************************************************************************
|
|
|
|
// Beware that all scriptable interfaces implemented by
|
|
|
|
// nsGlobalWindow will be reachable from JS, if you make this class
|
|
|
|
// implement new interfaces you better know what you're
|
|
|
|
// doing. Security wise this is very sensitive code. --
|
|
|
|
// jst@netscape.com
|
|
|
|
|
|
|
|
// nsGlobalWindow inherits PRCList for maintaining a list of all inner
|
2008-01-29 17:31:29 -08:00
|
|
|
// windows still in memory for any given outer window. This list is
|
2007-03-22 10:30:00 -07: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).
|
|
|
|
|
2013-01-29 05:44:01 -08:00
|
|
|
class nsGlobalWindow : public mozilla::dom::EventTarget,
|
|
|
|
public nsPIDOMWindow,
|
2007-03-22 10:30:00 -07:00
|
|
|
public nsIScriptGlobalObject,
|
2013-09-08 20:28:48 -07:00
|
|
|
public nsIScriptObjectPrincipal,
|
2007-03-22 10:30:00 -07:00
|
|
|
public nsSupportsWeakReference,
|
|
|
|
public nsIInterfaceRequestor,
|
2014-09-05 20:33:37 -07:00
|
|
|
public PRCListStr
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
public:
|
2010-09-16 18:24:14 -07:00
|
|
|
typedef mozilla::TimeStamp TimeStamp;
|
|
|
|
typedef mozilla::TimeDuration TimeDuration;
|
2011-06-29 04:06:43 -07:00
|
|
|
typedef nsDataHashtable<nsUint64HashKey, nsGlobalWindow*> WindowByIdTable;
|
2010-09-16 18:24:14 -07:00
|
|
|
|
2015-01-05 14:53:37 -08:00
|
|
|
static void
|
|
|
|
AssertIsOnMainThread()
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{ }
|
|
|
|
#endif
|
|
|
|
|
2015-09-25 14:03:51 -07:00
|
|
|
static nsGlobalWindow* Cast(nsPIDOMWindow* aPIWin) { return static_cast<nsGlobalWindow*>(aPIWin); }
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// public methods
|
|
|
|
nsPIDOMWindow* GetPrivateParent();
|
2014-05-25 11:31:07 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// callback for close event
|
|
|
|
void ReallyCloseWindow();
|
|
|
|
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
|
2011-08-20 06:53:34 -07:00
|
|
|
// nsWrapperCache
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject *WrapObject(JSContext *cx, JS::Handle<JSObject*> aGivenProto) override
|
2011-08-20 06:53:34 -07:00
|
|
|
{
|
2014-06-06 05:54:35 -07:00
|
|
|
return IsInnerWindow() || EnsureInnerWindow() ? GetWrapper() : nullptr;
|
2011-08-20 06:53:34 -07:00
|
|
|
}
|
|
|
|
|
2013-04-04 02:27:06 -07:00
|
|
|
// nsIGlobalJSObjectHolder
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual JSObject* GetGlobalJSObject() override;
|
2013-04-04 02:27:06 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIScriptGlobalObject
|
2013-11-20 05:55:09 -08:00
|
|
|
JSObject *FastGetGlobalJSObject() const
|
2010-06-08 09:13:08 -07:00
|
|
|
{
|
2013-11-09 02:20:22 -08:00
|
|
|
return GetWrapperPreserveColor();
|
2010-06-08 09:13:08 -07:00
|
|
|
}
|
2013-11-09 02:20:22 -08:00
|
|
|
|
2013-03-28 13:37:22 -07:00
|
|
|
void TraceGlobalJSObject(JSTracer* aTrc);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult EnsureScriptEnvironment() override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsIScriptContext *GetScriptContext() override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-04-02 13:08:41 -07:00
|
|
|
void PoisonOuterWindowProxy(JSObject *aObject);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool IsBlackForCC(bool aTracingNeeded = true) override;
|
2012-01-26 07:03:21 -08:00
|
|
|
|
2014-04-08 11:39:38 -07:00
|
|
|
static JSObject* OuterObject(JSContext* aCx, JS::Handle<JSObject*> aObj);
|
2014-02-15 13:12:33 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIScriptObjectPrincipal
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsIPrincipal* GetPrincipal() override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIDOMWindow
|
|
|
|
NS_DECL_NSIDOMWINDOW
|
|
|
|
|
2015-07-16 22:10:35 -07:00
|
|
|
nsresult
|
|
|
|
OpenJS(const nsAString& aUrl, const nsAString& aName,
|
|
|
|
const nsAString& aOptions, nsIDOMWindow **_retval);
|
|
|
|
void CaptureEvents();
|
|
|
|
void ReleaseEvents();
|
|
|
|
void Dump(const nsAString& aStr);
|
|
|
|
void SetResizable(bool aResizable) const;
|
|
|
|
nsresult GetScriptableContent(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JS::Value> aVal);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// nsIDOMEventTarget
|
|
|
|
NS_DECL_NSIDOMEVENTTARGET
|
2013-10-22 16:32:04 -07:00
|
|
|
|
2014-03-16 23:56:53 -07:00
|
|
|
virtual mozilla::EventListenerManager*
|
2015-03-21 09:28:04 -07:00
|
|
|
GetExistingListenerManager() const override;
|
2013-10-22 16:32:04 -07:00
|
|
|
|
2014-03-16 23:56:53 -07:00
|
|
|
virtual mozilla::EventListenerManager*
|
2015-03-21 09:28:04 -07:00
|
|
|
GetOrCreateListenerManager() override;
|
2013-10-22 16:32:04 -07:00
|
|
|
|
2013-04-16 14:16:08 -07:00
|
|
|
using mozilla::dom::EventTarget::RemoveEventListener;
|
|
|
|
virtual void AddEventListener(const nsAString& aType,
|
2013-09-23 17:25:17 -07:00
|
|
|
mozilla::dom::EventListener* aListener,
|
2013-04-16 14:16:08 -07:00
|
|
|
bool aUseCapture,
|
|
|
|
const mozilla::dom::Nullable<bool>& aWantsUntrusted,
|
2015-03-21 09:28:04 -07:00
|
|
|
mozilla::ErrorResult& aRv) override;
|
2015-05-12 12:56:39 -07:00
|
|
|
virtual nsIDOMWindow* GetOwnerGlobalForBindings() override
|
2013-05-30 14:46:39 -07:00
|
|
|
{
|
|
|
|
if (IsOuterWindow()) {
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetOuterFromCurrentInner(this);
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-05-12 12:56:39 -07:00
|
|
|
virtual nsIGlobalObject* GetOwnerGlobal() const override
|
|
|
|
{
|
|
|
|
if (IsOuterWindow()) {
|
|
|
|
return GetCurrentInnerWindowInternal();
|
|
|
|
}
|
|
|
|
|
|
|
|
return const_cast<nsGlobalWindow*>(this);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsPIDOMWindow
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsPIDOMWindow* GetPrivateRoot() override;
|
2013-11-28 06:07:55 -08:00
|
|
|
|
|
|
|
// Outer windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void ActivateOrDeactivate(bool aActivate) override;
|
|
|
|
virtual void SetActive(bool aActive) override;
|
|
|
|
virtual void SetIsBackground(bool aIsBackground) override;
|
|
|
|
virtual void SetChromeEventHandler(mozilla::dom::EventTarget* aChromeEventHandler) override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-05-20 12:50:58 -07:00
|
|
|
// Outer windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void SetInitialPrincipalToSubject() override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual PopupControlState PushPopupControlState(PopupControlState state, bool aForce) const override;
|
|
|
|
virtual void PopPopupControlState(PopupControlState state) const override;
|
|
|
|
virtual PopupControlState GetPopupControlState() const override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual already_AddRefed<nsISupports> SaveWindowState() override;
|
|
|
|
virtual nsresult RestoreWindowState(nsISupports *aState) override;
|
2014-06-02 05:08:21 -07:00
|
|
|
virtual void SuspendTimeouts(uint32_t aIncrease = 1,
|
2015-10-07 03:20:59 -07:00
|
|
|
bool aFreezeChildren = true,
|
|
|
|
bool aFreezeWorkers = true) override;
|
|
|
|
virtual nsresult ResumeTimeouts(bool aThawChildren = true,
|
|
|
|
bool aThawWorkers = true) override;
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual uint32_t TimeoutSuspendCount() override;
|
|
|
|
virtual nsresult FireDelayedDOMEvents() override;
|
|
|
|
virtual bool IsFrozen() const override
|
2008-01-16 13:54:33 -08:00
|
|
|
{
|
|
|
|
return mIsFrozen;
|
|
|
|
}
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool IsRunningTimeout() override { return mTimeoutFiringDepth > 0; }
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-05-20 12:50:58 -07:00
|
|
|
// Outer windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool WouldReuseInnerWindow(nsIDocument* aNewDocument) override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void SetDocShell(nsIDocShell* aDocShell) override;
|
|
|
|
virtual void DetachFromDocShell() override;
|
2014-06-02 05:08:21 -07:00
|
|
|
virtual nsresult SetNewDocument(nsIDocument *aDocument,
|
2015-01-02 18:13:39 -08:00
|
|
|
nsISupports *aState,
|
2015-03-21 09:28:04 -07:00
|
|
|
bool aForceReuseInnerWindow) override;
|
2014-05-20 12:50:59 -07:00
|
|
|
|
|
|
|
// Outer windows only.
|
2010-06-10 09:23:40 -07:00
|
|
|
void DispatchDOMWindowCreated();
|
2014-05-20 12:50:59 -07:00
|
|
|
|
2014-06-02 05:08:21 -07:00
|
|
|
virtual void SetOpenerWindow(nsIDOMWindow* aOpener,
|
2015-03-21 09:28:04 -07:00
|
|
|
bool aOriginalOpener) override;
|
2013-11-28 06:07:55 -08:00
|
|
|
|
2013-07-01 00:14:24 -07:00
|
|
|
// Outer windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void EnsureSizeUpToDate() override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void EnterModalState() override;
|
|
|
|
virtual void LeaveModalState() override;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-05-20 12:50:58 -07:00
|
|
|
// Outer windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool CanClose() override;
|
|
|
|
virtual void ForceClose() override;
|
2014-06-29 08:31:12 -07:00
|
|
|
|
2015-04-02 17:45:50 -07:00
|
|
|
virtual void MaybeUpdateTouchState() override;
|
|
|
|
|
2014-06-29 08:31:12 -07:00
|
|
|
// Outer windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool DispatchCustomEvent(const nsAString& aEventName) override;
|
2014-06-29 08:31:12 -07:00
|
|
|
bool DispatchResizeEvent(const mozilla::CSSIntSize& aSize);
|
|
|
|
|
2014-06-29 08:36:01 -07:00
|
|
|
// Inner windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void RefreshCompartmentPrincipal() override;
|
2014-06-29 08:36:01 -07:00
|
|
|
|
2015-07-13 03:44:36 -07:00
|
|
|
// For accessing protected field mFullScreen
|
|
|
|
friend class FullscreenTransitionTask;
|
|
|
|
|
2014-06-29 08:35:56 -07:00
|
|
|
// Outer windows only.
|
2015-07-08 15:00:33 -07:00
|
|
|
virtual nsresult SetFullscreenInternal(
|
|
|
|
FullscreenReason aReason, bool aIsFullscreen,
|
|
|
|
mozilla::gfx::VRHMDInfo *aHMD = nullptr) override final;
|
2015-06-10 04:13:12 -07:00
|
|
|
virtual void FinishFullscreenChange(bool aIsFullscreen) override final;
|
2015-08-27 06:14:49 -07:00
|
|
|
void SetWidgetFullscreen(FullscreenReason aReason, bool aIsFullscreen,
|
|
|
|
nsIWidget* aWidget, nsIScreen* aScreen);
|
2014-06-29 08:35:56 -07:00
|
|
|
bool FullScreen() const;
|
|
|
|
|
2014-06-29 08:36:02 -07:00
|
|
|
// Inner windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void SetHasGamepadEventListener(bool aHasGamepad = true) override;
|
2011-08-03 11:12:08 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// nsIInterfaceRequestor
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
|
2012-10-02 01:07:35 -07:00
|
|
|
// WebIDL interface.
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> IndexedGetterOuter(uint32_t aIndex);
|
|
|
|
already_AddRefed<nsIDOMWindow> IndexedGetter(uint32_t aIndex);
|
2012-10-02 01:07:35 -07:00
|
|
|
|
2013-07-09 07:45:13 -07:00
|
|
|
void GetSupportedNames(nsTArray<nsString>& aNames);
|
|
|
|
|
2015-01-26 10:26:33 -08:00
|
|
|
static bool IsPrivilegedChromeWindow(JSContext* /* unused */, JSObject* aObj);
|
2014-02-05 20:36:59 -08:00
|
|
|
|
2014-07-25 22:41:10 -07:00
|
|
|
static bool IsShowModalDialogEnabled(JSContext* /* unused */ = nullptr,
|
|
|
|
JSObject* /* unused */ = nullptr);
|
|
|
|
|
2014-11-07 16:07:12 -08:00
|
|
|
bool DoResolve(JSContext* aCx, JS::Handle<JSObject*> aObj,
|
|
|
|
JS::Handle<jsid> aId,
|
|
|
|
JS::MutableHandle<JSPropertyDescriptor> aDesc);
|
2015-04-28 09:25:55 -07:00
|
|
|
// The return value is whether DoResolve might end up resolving the given id.
|
|
|
|
// If in doubt, return true.
|
|
|
|
static bool MayResolve(jsid aId);
|
2014-01-29 22:33:25 -08:00
|
|
|
|
2014-01-29 22:33:27 -08:00
|
|
|
void GetOwnPropertyNames(JSContext* aCx, nsTArray<nsString>& aNames,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Object Management
|
2014-08-26 19:42:13 -07:00
|
|
|
static already_AddRefed<nsGlobalWindow> Create(nsGlobalWindow *aOuterWindow);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-05-12 13:20:42 -07:00
|
|
|
static nsGlobalWindow *FromSupports(nsISupports *supports)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
// Make sure this matches the casts we do in QueryInterface().
|
2013-04-05 17:44:15 -07:00
|
|
|
return (nsGlobalWindow *)(mozilla::dom::EventTarget *)supports;
|
2009-05-12 13:20:42 -07:00
|
|
|
}
|
|
|
|
static nsGlobalWindow *FromWrapper(nsIXPConnectWrappedNative *wrapper)
|
|
|
|
{
|
|
|
|
return FromSupports(wrapper->Native());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2012-05-23 08:27:10 -07: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-16 18:24:14 -07:00
|
|
|
inline nsGlobalWindow *GetTop()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMWindow> top;
|
|
|
|
GetTop(getter_AddRefs(top));
|
|
|
|
if (top)
|
2012-06-07 07:43:23 -07:00
|
|
|
return static_cast<nsGlobalWindow *>(top.get());
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2012-06-07 07:43:23 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
inline nsGlobalWindow* GetScriptableTop()
|
|
|
|
{
|
|
|
|
nsCOMPtr<nsIDOMWindow> top;
|
|
|
|
GetScriptableTop(getter_AddRefs(top));
|
2013-10-08 08:51:42 -07:00
|
|
|
return static_cast<nsGlobalWindow *>(top.get());
|
2010-09-16 18:24:14 -07:00
|
|
|
}
|
|
|
|
|
2014-01-09 18:03:47 -08:00
|
|
|
nsPIDOMWindow* GetChildWindow(const nsAString& aName);
|
2013-03-14 22:38:26 -07:00
|
|
|
|
2013-10-08 14:00:12 -07:00
|
|
|
// These return true if we've reached the state in this top level window
|
|
|
|
// where we ask the user if further dialogs should be blocked.
|
|
|
|
//
|
|
|
|
// DialogsAreBeingAbused must be called on the scriptable top inner window.
|
|
|
|
//
|
|
|
|
// ShouldPromptToBlockDialogs is implemented in terms of
|
|
|
|
// DialogsAreBeingAbused, and will get the scriptable top inner window
|
|
|
|
// automatically.
|
2013-11-28 06:07:55 -08:00
|
|
|
// Outer windows only.
|
2013-10-08 14:00:12 -07:00
|
|
|
bool ShouldPromptToBlockDialogs();
|
2013-11-28 06:07:55 -08:00
|
|
|
// Inner windows only.
|
2012-08-13 12:03:59 -07:00
|
|
|
bool DialogsAreBeingAbused();
|
2010-09-16 18:24:14 -07:00
|
|
|
|
2013-10-08 14:00:12 -07:00
|
|
|
// These functions are used for controlling and determining whether dialogs
|
|
|
|
// (alert, prompt, confirm) are currently allowed in this window.
|
|
|
|
void EnableDialogs();
|
|
|
|
void DisableDialogs();
|
2014-05-20 12:50:59 -07:00
|
|
|
// Outer windows only.
|
2013-10-08 14:00:12 -07:00
|
|
|
bool AreDialogsEnabled();
|
2010-09-16 18:24:14 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIScriptContext *GetContextInternal()
|
|
|
|
{
|
|
|
|
if (mOuterWindow) {
|
|
|
|
return GetOuterWindowInternal()->mContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
return mContext;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsGlobalWindow *GetOuterWindowInternal()
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
return static_cast<nsGlobalWindow *>(GetOuterWindow());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-10-22 16:32:04 -07:00
|
|
|
nsGlobalWindow *GetCurrentInnerWindowInternal() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2014-08-19 12:02:05 -07:00
|
|
|
MOZ_ASSERT(IsOuterWindow());
|
2007-07-08 00:08:04 -07:00
|
|
|
return static_cast<nsGlobalWindow *>(mInnerWindow);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
nsGlobalWindow *EnsureInnerWindowInternal()
|
|
|
|
{
|
2007-07-08 00:08:04 -07:00
|
|
|
return static_cast<nsGlobalWindow *>(EnsureInnerWindow());
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsCreatingInnerWindow() const
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
return mCreatingInnerWindow;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsChromeWindow() const
|
2007-08-02 16:34:38 -07:00
|
|
|
{
|
|
|
|
return mIsChrome;
|
|
|
|
}
|
|
|
|
|
2014-02-05 13:09:18 -08:00
|
|
|
using nsPIDOMWindow::IsModalContentWindow;
|
|
|
|
static bool IsModalContentWindow(JSContext* aCx, JSObject* aGlobal);
|
|
|
|
|
2012-11-22 17:25:28 -08: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();
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult Observe(nsISupports* aSubject, const char* aTopic,
|
2014-01-04 07:02:17 -08:00
|
|
|
const char16_t* aData);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2013-11-28 06:07:55 -08:00
|
|
|
// Outer windows only.
|
2013-05-21 10:45:56 -07:00
|
|
|
void UnblockScriptedClosing();
|
|
|
|
|
2011-08-31 07:54:39 -07:00
|
|
|
static void Init();
|
2007-03-22 10:30:00 -07:00
|
|
|
static void ShutDown();
|
2008-02-12 20:17:18 -08:00
|
|
|
static void CleanupCachedXBLHandlers(nsGlobalWindow* aWindow);
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool IsCallerChrome();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
static void RunPendingTimeoutsRecursive(nsGlobalWindow *aTopWindow,
|
|
|
|
nsGlobalWindow *aWindow);
|
|
|
|
|
|
|
|
friend class WindowStateHolder;
|
|
|
|
|
2012-01-26 07:03:21 -08:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS_AMBIGUOUS(nsGlobalWindow,
|
2013-01-29 05:44:01 -08:00
|
|
|
nsIDOMEventTarget)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-20 12:55:40 -08:00
|
|
|
#ifdef DEBUG
|
|
|
|
// Call Unlink on this window. This may cause bad things to happen, so use
|
|
|
|
// with caution.
|
|
|
|
void RiskyUnlink();
|
|
|
|
#endif
|
|
|
|
|
2014-06-02 05:08:21 -07:00
|
|
|
virtual JSObject*
|
2015-03-21 09:28:04 -07:00
|
|
|
GetCachedXBLPrototypeHandler(nsXBLPrototypeHandler* aKey) override;
|
2008-02-12 20:17:18 -08:00
|
|
|
|
2014-06-02 05:08:21 -07:00
|
|
|
virtual void
|
2008-02-12 20:17:18 -08:00
|
|
|
CacheXBLPrototypeHandler(nsXBLPrototypeHandler* aKey,
|
2015-03-21 09:28:04 -07:00
|
|
|
JS::Handle<JSObject*> aHandler) override;
|
2008-02-12 20:17:18 -08:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool TakeFocus(bool aFocus, uint32_t aFocusMethod) override;
|
|
|
|
virtual void SetReadyForFocus() override;
|
|
|
|
virtual void PageHidden() override;
|
|
|
|
virtual nsresult DispatchAsyncHashchange(nsIURI *aOldURI, nsIURI *aNewURI) override;
|
|
|
|
virtual nsresult DispatchSyncPopState() override;
|
2009-09-01 09:45:05 -07:00
|
|
|
|
2013-11-28 06:07:55 -08:00
|
|
|
// Inner windows only.
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void EnableDeviceSensor(uint32_t aType) override;
|
|
|
|
virtual void DisableDeviceSensor(uint32_t aType) override;
|
2012-03-24 17:29:49 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void EnableTimeChangeNotifications() override;
|
|
|
|
virtual void DisableTimeChangeNotifications() override;
|
2012-09-10 23:05:00 -07:00
|
|
|
|
2012-11-07 10:10:40 -08:00
|
|
|
#ifdef MOZ_B2G
|
2013-11-28 06:07:55 -08:00
|
|
|
// Inner windows only.
|
2015-08-26 05:56:59 -07:00
|
|
|
virtual void EnableNetworkEvent(mozilla::EventMessage aEventMessage) override;
|
|
|
|
virtual void DisableNetworkEvent(
|
|
|
|
mozilla::EventMessage aEventMessage) override;
|
2012-11-07 10:10:40 -08:00
|
|
|
#endif // MOZ_B2G
|
2012-09-30 06:47:48 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult SetArguments(nsIArray* aArguments) override;
|
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 11:00:39 -07:00
|
|
|
|
2010-03-11 20:42:05 -08:00
|
|
|
void MaybeForgiveSpamCount();
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsClosedOrClosing() {
|
2010-03-11 20:42:05 -08:00
|
|
|
return (mIsClosed ||
|
|
|
|
mInClose ||
|
|
|
|
mHavePendingClose ||
|
|
|
|
mCleanedUp);
|
|
|
|
}
|
|
|
|
|
2015-03-06 05:04:49 -08:00
|
|
|
bool
|
|
|
|
HadOriginalOpener() const
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(IsOuterWindow());
|
|
|
|
return mHadOriginalOpener;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool
|
|
|
|
IsTopLevelWindow()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(IsOuterWindow());
|
|
|
|
nsCOMPtr<nsIDOMWindow> parentWindow;
|
|
|
|
nsresult rv = GetScriptableTop(getter_AddRefs(parentWindow));
|
|
|
|
if (NS_WARN_IF(NS_FAILED(rv))) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return parentWindow == static_cast<nsIDOMWindow*>(this);
|
|
|
|
}
|
|
|
|
|
2014-06-30 16:02:01 -07:00
|
|
|
virtual void
|
|
|
|
FirePopupBlockedEvent(nsIDocument* aDoc,
|
|
|
|
nsIURI* aPopupURI,
|
|
|
|
const nsAString& aPopupWindowName,
|
2015-03-21 09:28:04 -07:00
|
|
|
const nsAString& aPopupWindowFeatures) override;
|
2010-08-27 08:49:08 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual uint32_t GetSerial() override {
|
2010-09-09 15:15:40 -07:00
|
|
|
return mSerial;
|
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
static nsGlobalWindow* GetOuterWindowWithId(uint64_t aWindowID) {
|
2015-01-05 14:53:37 -08:00
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
2011-09-03 16:43:22 -07:00
|
|
|
if (!sWindowsById) {
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2011-09-03 16:43:22 -07:00
|
|
|
}
|
|
|
|
|
2011-06-29 04:03:54 -07:00
|
|
|
nsGlobalWindow* outerWindow = sWindowsById->Get(aWindowID);
|
2012-07-30 07:20:58 -07:00
|
|
|
return outerWindow && !outerWindow->IsInnerWindow() ? outerWindow : nullptr;
|
2010-10-20 17:24:16 -07:00
|
|
|
}
|
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
static nsGlobalWindow* GetInnerWindowWithId(uint64_t aInnerWindowID) {
|
2015-01-05 14:53:37 -08:00
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
2011-09-02 16:49:08 -07:00
|
|
|
if (!sWindowsById) {
|
2012-07-30 07:20:58 -07:00
|
|
|
return nullptr;
|
2011-09-02 16:49:08 -07:00
|
|
|
}
|
|
|
|
|
2011-08-24 13:44:35 -07:00
|
|
|
nsGlobalWindow* innerWindow = sWindowsById->Get(aInnerWindowID);
|
2012-07-30 07:20:58 -07:00
|
|
|
return innerWindow && innerWindow->IsInnerWindow() ? innerWindow : nullptr;
|
2011-08-24 13:44:35 -07:00
|
|
|
}
|
|
|
|
|
2011-06-29 04:06:43 -07:00
|
|
|
static WindowByIdTable* GetWindowsTable() {
|
2015-01-05 14:53:37 -08:00
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
2011-06-29 04:06:43 -07:00
|
|
|
return sWindowsById;
|
|
|
|
}
|
|
|
|
|
2013-09-30 16:20:23 -07:00
|
|
|
void AddSizeOfIncludingThis(nsWindowSizes* aWindowSizes) const;
|
2011-06-29 04:06:43 -07:00
|
|
|
|
2012-01-26 07:03:21 -08:00
|
|
|
void UnmarkGrayTimers();
|
2012-03-12 17:56:07 -07:00
|
|
|
|
2014-05-20 12:50:57 -07:00
|
|
|
// Inner windows only.
|
2014-03-31 23:13:50 -07:00
|
|
|
void AddEventTargetObject(mozilla::DOMEventTargetHelper* aObject);
|
|
|
|
void RemoveEventTargetObject(mozilla::DOMEventTargetHelper* aObject);
|
2012-03-04 08:02:00 -08:00
|
|
|
|
2012-07-13 15:39:46 -07:00
|
|
|
void NotifyIdleObserver(IdleObserverHolder* aIdleObserverHolder,
|
2012-06-29 01:32:21 -07:00
|
|
|
bool aCallOnidle);
|
2012-07-13 15:39:46 -07:00
|
|
|
nsresult HandleIdleActiveEvent();
|
2012-08-22 08:56:38 -07:00
|
|
|
bool ContainsIdleObserver(nsIIdleObserver* aIdleObserver, uint32_t timeInS);
|
2012-06-29 01:32:21 -07:00
|
|
|
void HandleIdleObserverCallback();
|
|
|
|
|
2012-10-12 03:17:56 -07:00
|
|
|
void AllowScriptsToClose()
|
|
|
|
{
|
|
|
|
mAllowScriptsToClose = true;
|
|
|
|
}
|
2012-11-26 06:19:02 -08:00
|
|
|
|
2013-08-12 12:54:49 -07:00
|
|
|
enum SlowScriptResponse {
|
|
|
|
ContinueSlowScript = 0,
|
2015-01-16 18:34:47 -08:00
|
|
|
ContinueSlowScriptAndKeepNotifying,
|
2013-08-12 12:54:49 -07:00
|
|
|
AlwaysContinueSlowScript,
|
|
|
|
KillSlowScript
|
|
|
|
};
|
|
|
|
SlowScriptResponse ShowSlowScriptDialog();
|
|
|
|
|
2011-08-03 11:12:08 -07:00
|
|
|
#ifdef MOZ_GAMEPAD
|
2014-06-29 08:36:02 -07:00
|
|
|
// Inner windows only.
|
2012-02-15 16:47:13 -08:00
|
|
|
void AddGamepad(uint32_t aIndex, mozilla::dom::Gamepad* aGamepad);
|
2013-04-02 17:59:27 -07:00
|
|
|
void RemoveGamepad(uint32_t aIndex);
|
2012-02-15 16:47:13 -08:00
|
|
|
void GetGamepads(nsTArray<nsRefPtr<mozilla::dom::Gamepad> >& aGamepads);
|
|
|
|
already_AddRefed<mozilla::dom::Gamepad> GetGamepad(uint32_t aIndex);
|
2011-08-03 11:12:08 -07:00
|
|
|
void SetHasSeenGamepadInput(bool aHasSeen);
|
|
|
|
bool HasSeenGamepadInput();
|
|
|
|
void SyncGamepadState();
|
2013-04-02 17:59:27 -07:00
|
|
|
static PLDHashOperator EnumGamepadsForSync(const uint32_t& aKey,
|
2012-02-15 16:47:13 -08:00
|
|
|
mozilla::dom::Gamepad* aData,
|
|
|
|
void* aUserArg);
|
2013-06-23 17:58:53 -07:00
|
|
|
static PLDHashOperator EnumGamepadsForGet(const uint32_t& aKey,
|
2012-02-15 16:47:13 -08:00
|
|
|
mozilla::dom::Gamepad* aData,
|
|
|
|
void* aUserArg);
|
2011-08-03 11:12:08 -07:00
|
|
|
#endif
|
|
|
|
|
2014-06-29 08:36:02 -07:00
|
|
|
// Inner windows only.
|
2011-08-03 11:12:08 -07:00
|
|
|
// Enable/disable updates for gamepad input.
|
|
|
|
void EnableGamepadUpdates();
|
|
|
|
void DisableGamepadUpdates();
|
|
|
|
|
2014-07-09 12:24:49 -07:00
|
|
|
// Get the VR devices for this window, initializing if necessary
|
|
|
|
bool GetVRDevices(nsTArray<nsRefPtr<mozilla::dom::VRDevice>>& aDevices);
|
2011-08-03 11:12:08 -07:00
|
|
|
|
2012-11-26 06:19:02 -08:00
|
|
|
#define EVENT(name_, id_, type_, struct_) \
|
|
|
|
mozilla::dom::EventHandlerNonNull* GetOn##name_() \
|
|
|
|
{ \
|
2014-03-16 23:56:53 -07:00
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
2013-08-16 03:06:24 -07:00
|
|
|
return elm ? elm->GetEventHandler(nsGkAtoms::on##name_, EmptyString()) \
|
|
|
|
: nullptr; \
|
2012-11-26 06:19:02 -08:00
|
|
|
} \
|
2013-09-17 04:01:28 -07:00
|
|
|
void SetOn##name_(mozilla::dom::EventHandlerNonNull* handler) \
|
2012-11-26 06:19:02 -08:00
|
|
|
{ \
|
2014-03-16 23:56:53 -07:00
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
2012-11-26 06:19:02 -08:00
|
|
|
if (elm) { \
|
2013-09-17 04:01:28 -07:00
|
|
|
elm->SetEventHandler(nsGkAtoms::on##name_, EmptyString(), handler); \
|
2012-11-26 06:19:02 -08:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define ERROR_EVENT(name_, id_, type_, struct_) \
|
|
|
|
mozilla::dom::OnErrorEventHandlerNonNull* GetOn##name_() \
|
|
|
|
{ \
|
2014-03-16 23:56:53 -07:00
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
2012-11-26 06:19:02 -08:00
|
|
|
return elm ? elm->GetOnErrorEventHandler() : nullptr; \
|
|
|
|
} \
|
2013-09-17 04:01:28 -07:00
|
|
|
void SetOn##name_(mozilla::dom::OnErrorEventHandlerNonNull* handler) \
|
2012-11-26 06:19:02 -08:00
|
|
|
{ \
|
2014-03-16 23:56:53 -07:00
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
2012-11-26 06:19:02 -08:00
|
|
|
if (elm) { \
|
2013-09-17 04:01:28 -07:00
|
|
|
elm->SetEventHandler(handler); \
|
2012-11-26 06:19:02 -08:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define BEFOREUNLOAD_EVENT(name_, id_, type_, struct_) \
|
2013-10-08 08:51:15 -07:00
|
|
|
mozilla::dom::OnBeforeUnloadEventHandlerNonNull* GetOn##name_() \
|
2012-11-26 06:19:02 -08:00
|
|
|
{ \
|
2014-03-16 23:56:53 -07:00
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
2012-11-26 06:19:02 -08:00
|
|
|
return elm ? elm->GetOnBeforeUnloadEventHandler() : nullptr; \
|
|
|
|
} \
|
2013-10-08 08:51:15 -07:00
|
|
|
void SetOn##name_(mozilla::dom::OnBeforeUnloadEventHandlerNonNull* handler) \
|
2012-11-26 06:19:02 -08:00
|
|
|
{ \
|
2014-03-16 23:56:53 -07:00
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
2012-11-26 06:19:02 -08:00
|
|
|
if (elm) { \
|
2013-09-17 04:01:28 -07:00
|
|
|
elm->SetEventHandler(handler); \
|
2012-11-26 06:19:02 -08:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define WINDOW_ONLY_EVENT EVENT
|
|
|
|
#define TOUCH_EVENT EVENT
|
2014-04-01 04:42:12 -07:00
|
|
|
#include "mozilla/EventNameList.h"
|
2012-11-26 06:19:02 -08:00
|
|
|
#undef TOUCH_EVENT
|
|
|
|
#undef WINDOW_ONLY_EVENT
|
|
|
|
#undef BEFOREUNLOAD_EVENT
|
|
|
|
#undef ERROR_EVENT
|
|
|
|
#undef EVENT
|
|
|
|
|
2013-10-08 08:51:42 -07:00
|
|
|
nsISupports* GetParentObject()
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2014-09-05 13:36:36 -07:00
|
|
|
static JSObject*
|
|
|
|
CreateNamedPropertiesObject(JSContext *aCx, JS::Handle<JSObject*> aProto);
|
|
|
|
|
2014-12-09 11:44:37 -08:00
|
|
|
nsGlobalWindow* Window();
|
2015-04-27 10:38:12 -07:00
|
|
|
nsGlobalWindow* Self();
|
2013-10-08 08:51:42 -07:00
|
|
|
nsIDocument* GetDocument()
|
|
|
|
{
|
|
|
|
return GetDoc();
|
|
|
|
}
|
2015-07-16 22:10:35 -07:00
|
|
|
void GetNameOuter(nsAString& aName);
|
2013-10-08 08:51:42 -07:00
|
|
|
void GetName(nsAString& aName, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetNameOuter(const nsAString& aName, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void SetName(const nsAString& aName, mozilla::ErrorResult& aError);
|
2014-07-11 16:30:27 -07:00
|
|
|
nsLocation* GetLocation(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
nsHistory* GetHistory(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::BarProp* GetLocationbar(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::BarProp* GetMenubar(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::BarProp* GetPersonalbar(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::BarProp* GetScrollbars(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::BarProp* GetStatusbar(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::BarProp* GetToolbar(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void GetStatusOuter(nsAString& aStatus);
|
2013-10-08 08:51:42 -07:00
|
|
|
void GetStatus(nsAString& aStatus, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetStatusOuter(const nsAString& aStatus);
|
2013-10-08 08:51:42 -07:00
|
|
|
void SetStatus(const nsAString& aStatus, mozilla::ErrorResult& aError);
|
2015-10-13 22:23:15 -07:00
|
|
|
void CloseOuter(bool aTrustedCaller);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Close(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
bool GetClosedOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
bool GetClosed(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void StopOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Stop(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void FocusOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Focus(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void BlurOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
void Blur(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> GetFramesOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> GetFrames(mozilla::ErrorResult& aError);
|
|
|
|
uint32_t Length();
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> GetTopOuter(mozilla::ErrorResult& aError);
|
|
|
|
already_AddRefed<nsIDOMWindow> GetTop(mozilla::ErrorResult& aError);
|
2014-06-03 08:38:37 -07:00
|
|
|
protected:
|
2014-08-26 19:42:13 -07:00
|
|
|
explicit nsGlobalWindow(nsGlobalWindow *aOuterWindow);
|
2015-07-16 22:10:35 -07:00
|
|
|
nsIDOMWindow* GetOpenerWindowOuter();
|
2014-06-03 08:38:37 -07:00
|
|
|
nsIDOMWindow* GetOpenerWindow(mozilla::ErrorResult& aError);
|
2014-08-26 19:42:13 -07:00
|
|
|
// Initializes the mWasOffline member variable
|
|
|
|
void InitWasOffline();
|
2014-06-03 08:38:37 -07:00
|
|
|
public:
|
2014-06-11 13:26:52 -07:00
|
|
|
void GetOpener(JSContext* aCx, JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
2014-06-03 08:38:37 -07:00
|
|
|
void SetOpener(JSContext* aCx, JS::Handle<JS::Value> aOpener,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
using nsIDOMWindow::GetParent;
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> GetParentOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> GetParent(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
mozilla::dom::Element* GetFrameElementOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
mozilla::dom::Element* GetFrameElement(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> OpenOuter(const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> Open(const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::Navigator* GetNavigator(mozilla::ErrorResult& aError);
|
|
|
|
nsIDOMOfflineResourceList* GetApplicationCache(mozilla::ErrorResult& aError);
|
2014-01-31 15:02:56 -08:00
|
|
|
|
2014-02-27 15:39:00 -08:00
|
|
|
mozilla::dom::Console* GetConsole(mozilla::ErrorResult& aRv);
|
|
|
|
|
2014-03-27 21:03:03 -07:00
|
|
|
void GetSidebar(mozilla::dom::OwningExternalOrWindowProxy& aResult,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
already_AddRefed<mozilla::dom::External> GetExternal(mozilla::ErrorResult& aRv);
|
|
|
|
|
2015-06-17 04:17:33 -07:00
|
|
|
// Exposed only for testing
|
|
|
|
static bool
|
|
|
|
TokenizeDialogOptions(nsAString& aToken, nsAString::const_iterator& aIter,
|
|
|
|
nsAString::const_iterator aEnd);
|
|
|
|
static void
|
|
|
|
ConvertDialogOptions(const nsAString& aOptions, nsAString& aResult);
|
|
|
|
|
2014-01-31 15:02:56 -08:00
|
|
|
protected:
|
|
|
|
bool AlertOrConfirm(bool aAlert, const nsAString& aMessage,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
public:
|
2014-05-20 13:07:17 -07:00
|
|
|
void Alert(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void AlertOuter(const nsAString& aMessage, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Alert(const nsAString& aMessage, mozilla::ErrorResult& aError);
|
2015-03-02 05:22:00 -08:00
|
|
|
already_AddRefed<mozilla::dom::cache::CacheStorage> GetCaches(mozilla::ErrorResult& aRv);
|
2015-07-16 22:10:35 -07:00
|
|
|
bool ConfirmOuter(const nsAString& aMessage, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
bool Confirm(const nsAString& aMessage, mozilla::ErrorResult& aError);
|
2014-11-20 03:58:00 -08:00
|
|
|
already_AddRefed<mozilla::dom::Promise> Fetch(const mozilla::dom::RequestOrUSVString& aInput,
|
2014-07-24 18:30:07 -07:00
|
|
|
const mozilla::dom::RequestInit& aInit,
|
|
|
|
mozilla::ErrorResult& aRv);
|
2015-07-16 22:10:35 -07:00
|
|
|
void PromptOuter(const nsAString& aMessage, const nsAString& aInitial,
|
|
|
|
nsAString& aReturn, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Prompt(const nsAString& aMessage, const nsAString& aInitial,
|
|
|
|
nsAString& aReturn, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void PrintOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Print(mozilla::ErrorResult& aError);
|
2014-06-11 13:26:52 -07:00
|
|
|
void ShowModalDialog(JSContext* aCx, const nsAString& aUrl,
|
|
|
|
JS::Handle<JS::Value> aArgument,
|
|
|
|
const nsAString& aOptions,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void PostMessageMoz(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
|
|
const nsAString& aTargetOrigin,
|
|
|
|
const mozilla::dom::Optional<mozilla::dom::Sequence<JS::Value > >& aTransfer,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t SetTimeout(JSContext* aCx, mozilla::dom::Function& aFunction,
|
|
|
|
int32_t aTimeout,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aArguments,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t SetTimeout(JSContext* aCx, const nsAString& aHandler,
|
2014-02-19 07:13:38 -08:00
|
|
|
int32_t aTimeout,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& /* unused */,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void ClearTimeout(int32_t aHandle, mozilla::ErrorResult& aError);
|
|
|
|
int32_t SetInterval(JSContext* aCx, mozilla::dom::Function& aFunction,
|
|
|
|
const mozilla::dom::Optional<int32_t>& aTimeout,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aArguments,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t SetInterval(JSContext* aCx, const nsAString& aHandler,
|
|
|
|
const mozilla::dom::Optional<int32_t>& aTimeout,
|
2014-02-19 07:13:38 -08:00
|
|
|
const mozilla::dom::Sequence<JS::Value>& /* unused */,
|
2013-10-08 08:51:42 -07:00
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void ClearInterval(int32_t aHandle, mozilla::ErrorResult& aError);
|
|
|
|
void Atob(const nsAString& aAsciiBase64String, nsAString& aBinaryData,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void Btoa(const nsAString& aBinaryData, nsAString& aAsciiBase64String,
|
|
|
|
mozilla::ErrorResult& aError);
|
2014-07-22 22:07:12 -07:00
|
|
|
mozilla::dom::DOMStorage* GetSessionStorage(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::DOMStorage* GetLocalStorage(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
mozilla::dom::Selection* GetSelectionOuter();
|
2014-04-10 09:09:40 -07:00
|
|
|
mozilla::dom::Selection* GetSelection(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
mozilla::dom::indexedDB::IDBFactory* GetIndexedDB(mozilla::ErrorResult& aError);
|
|
|
|
already_AddRefed<nsICSSDeclaration>
|
|
|
|
GetComputedStyle(mozilla::dom::Element& aElt, const nsAString& aPseudoElt,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<mozilla::dom::MediaQueryList> MatchMediaOuter(const nsAString& aQuery);
|
2013-12-16 06:03:34 -08:00
|
|
|
already_AddRefed<mozilla::dom::MediaQueryList> MatchMedia(const nsAString& aQuery,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
nsScreen* GetScreen(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void MoveToOuter(int32_t aXPos, int32_t aYPos, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void MoveTo(int32_t aXPos, int32_t aYPos, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void MoveByOuter(int32_t aXDif, int32_t aYDif, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void MoveBy(int32_t aXDif, int32_t aYDif, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void ResizeToOuter(int32_t aWidth, int32_t aHeight, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void ResizeTo(int32_t aWidth, int32_t aHeight,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void ResizeByOuter(int32_t aWidthDif, int32_t aHeightDif, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void ResizeBy(int32_t aWidthDif, int32_t aHeightDif,
|
|
|
|
mozilla::ErrorResult& aError);
|
Bug 1045754 - Part 1 - Implement updated CSSOM-View smooth-scrolling specification. r=bz
- Added new WebIDL dictionary, ScrollToOptions. This dictionary extends
ScrollOptions by adding "left" and "top", specifying the scroll offset.
This will be later extended with more members to allow scroll offsets to be
specified with logical axes.
- Implemented Window.Scroll, Window.ScrollTo, Window.ScrollBy, Element.Scroll,
Element.ScrollTo, and Element.ScrollBy functions that accept ScrollToOptions
as a single parameter.
- Removed ScrollOptions dictionary parameter from existing Window.Scroll,
Window.ScrollTo, and Window.ScrollBy functions as these have been replaced
with functions accepting a single parameter, ScrollToOptions.
- Added new WebIDL dictionary, ScrollIntoViewOptions. This dictionary
extends ScrollOptions by adding "block", specifying whether the element
start or end will be scrolled into view.
- Replaced Element.ScrollIntoView(bool,ScrollOptions) with
Element.ScrollIntoView(ScrollIntoViewOptions) to match updated
CSSOM-View scroll-behavior specification.
2014-10-01 10:47:56 -07:00
|
|
|
void Scroll(double aXScroll, double aYScroll);
|
|
|
|
void Scroll(const mozilla::dom::ScrollToOptions& aOptions);
|
|
|
|
void ScrollTo(double aXScroll, double aYScroll);
|
|
|
|
void ScrollTo(const mozilla::dom::ScrollToOptions& aOptions);
|
|
|
|
void ScrollBy(double aXScrollDif, double aYScrollDif);
|
|
|
|
void ScrollBy(const mozilla::dom::ScrollToOptions& aOptions);
|
2014-08-05 15:01:32 -07:00
|
|
|
void ScrollByLines(int32_t numLines,
|
|
|
|
const mozilla::dom::ScrollOptions& aOptions);
|
|
|
|
void ScrollByPages(int32_t numPages,
|
|
|
|
const mozilla::dom::ScrollOptions& aOptions);
|
2015-02-19 16:03:07 -08:00
|
|
|
void MozScrollSnap();
|
2015-04-08 19:50:45 -07:00
|
|
|
void GetInnerWidth(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetInnerWidth(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetInnerHeight(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetInnerHeight(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
int32_t GetScrollXOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
int32_t GetScrollX(mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetPageXOffset(mozilla::ErrorResult& aError)
|
|
|
|
{
|
|
|
|
return GetScrollX(aError);
|
|
|
|
}
|
2015-07-16 22:10:35 -07:00
|
|
|
int32_t GetScrollYOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
int32_t GetScrollY(mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetPageYOffset(mozilla::ErrorResult& aError)
|
|
|
|
{
|
|
|
|
return GetScrollY(aError);
|
|
|
|
}
|
2014-05-08 08:32:00 -07:00
|
|
|
void MozRequestOverfill(mozilla::dom::OverfillCallback& aCallback, mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
void GetScreenX(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetScreenX(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetScreenY(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetScreenY(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetOuterWidth(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterWidth(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetOuterHeight(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterHeight(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
int32_t RequestAnimationFrame(mozilla::dom::FrameRequestCallback& aCallback,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void CancelAnimationFrame(int32_t aHandle, mozilla::ErrorResult& aError);
|
2013-04-07 05:19:56 -07:00
|
|
|
#ifdef MOZ_WEBSPEECH
|
2013-10-08 08:51:42 -07:00
|
|
|
mozilla::dom::SpeechSynthesis*
|
|
|
|
GetSpeechSynthesis(mozilla::ErrorResult& aError);
|
2013-04-07 05:19:56 -07:00
|
|
|
#endif
|
2013-10-08 08:51:42 -07:00
|
|
|
already_AddRefed<nsICSSDeclaration>
|
|
|
|
GetDefaultComputedStyle(mozilla::dom::Element& aElt,
|
|
|
|
const nsAString& aPseudoElt,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SizeToContentOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void SizeToContent(mozilla::ErrorResult& aError);
|
2015-02-02 06:36:04 -08:00
|
|
|
mozilla::dom::Crypto* GetCrypto(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
nsIControllers* GetControllersOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
nsIControllers* GetControllers(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
mozilla::dom::Element* GetRealFrameElementOuter();
|
2014-06-04 11:11:05 -07:00
|
|
|
mozilla::dom::Element* GetRealFrameElement(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
float GetMozInnerScreenXOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
float GetMozInnerScreenX(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
float GetMozInnerScreenYOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
float GetMozInnerScreenY(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
float GetDevicePixelRatioOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
float GetDevicePixelRatio(mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScrollMaxX(mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScrollMaxY(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
bool GetFullScreenOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
bool GetFullScreen(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetFullScreenOuter(bool aFullScreen, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void SetFullScreen(bool aFullScreen, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void BackOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Back(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void ForwardOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Forward(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void HomeOuter(mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void Home(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
bool FindOuter(const nsAString& aString, bool aCaseSensitive, bool aBackwards,
|
|
|
|
bool aWrapAround, bool aWholeWord, bool aSearchInFrames,
|
|
|
|
bool aShowDialog, mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
bool Find(const nsAString& aString, bool aCaseSensitive, bool aBackwards,
|
|
|
|
bool aWrapAround, bool aWholeWord, bool aSearchInFrames,
|
|
|
|
bool aShowDialog, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
uint64_t GetMozPaintCountOuter();
|
2013-10-08 08:51:42 -07:00
|
|
|
uint64_t GetMozPaintCount(mozilla::ErrorResult& aError);
|
2014-08-26 07:11:15 -07:00
|
|
|
|
2015-06-07 06:02:00 -07:00
|
|
|
bool ShouldResistFingerprinting();
|
|
|
|
|
2014-08-26 07:11:15 -07:00
|
|
|
mozilla::dom::MozSelfSupport* GetMozSelfSupport(mozilla::ErrorResult& aError);
|
|
|
|
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> OpenDialogOuter(JSContext* aCx,
|
|
|
|
const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aExtraArgument,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> OpenDialog(JSContext* aCx,
|
|
|
|
const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aExtraArgument,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-09-25 14:03:51 -07:00
|
|
|
|
|
|
|
already_AddRefed<nsIDOMWindow>
|
|
|
|
GetContentInternal(mozilla::ErrorResult& aError, bool aUnprivilegedCaller);
|
2015-07-16 22:10:35 -07:00
|
|
|
void GetContentOuter(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JSObject*> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
2014-06-11 13:26:52 -07:00
|
|
|
void GetContent(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JSObject*> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-09-25 14:03:51 -07:00
|
|
|
already_AddRefed<nsIDOMWindow> GetContent()
|
|
|
|
{
|
|
|
|
MOZ_ASSERT(IsOuterWindow());
|
|
|
|
mozilla::ErrorResult ignored;
|
|
|
|
return GetContentInternal(ignored, /* aUnprivilegedCaller = */ false);
|
|
|
|
}
|
|
|
|
|
2014-06-11 13:26:52 -07:00
|
|
|
void Get_content(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JSObject*> aRetval,
|
|
|
|
mozilla::ErrorResult& aError)
|
2013-12-09 07:34:04 -08:00
|
|
|
{
|
2013-12-12 13:11:54 -08:00
|
|
|
if (mDoc) {
|
|
|
|
mDoc->WarnOnceAbout(nsIDocument::eWindow_Content);
|
|
|
|
}
|
2014-06-11 13:26:52 -07:00
|
|
|
GetContent(aCx, aRetval, aError);
|
2013-12-09 07:34:04 -08:00
|
|
|
}
|
2013-06-01 01:53:00 -07:00
|
|
|
|
2015-07-30 11:47:00 -07:00
|
|
|
already_AddRefed<mozilla::dom::Promise>
|
|
|
|
CreateImageBitmap(const mozilla::dom::ImageBitmapSource& aImage,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
|
|
|
|
already_AddRefed<mozilla::dom::Promise>
|
|
|
|
CreateImageBitmap(const mozilla::dom::ImageBitmapSource& aImage,
|
|
|
|
int32_t aSx, int32_t aSy, int32_t aSw, int32_t aSh,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
|
2014-02-05 20:37:30 -08:00
|
|
|
// ChromeWindow bits. Do NOT call these unless your window is in
|
|
|
|
// fact an nsGlobalChromeWindow.
|
|
|
|
uint16_t WindowState();
|
2015-07-16 22:10:35 -07:00
|
|
|
nsIBrowserDOMWindow* GetBrowserDOMWindowOuter();
|
2014-02-05 20:37:30 -08:00
|
|
|
nsIBrowserDOMWindow* GetBrowserDOMWindow(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetBrowserDOMWindowOuter(nsIBrowserDOMWindow* aBrowserWindow);
|
2014-02-05 20:37:30 -08:00
|
|
|
void SetBrowserDOMWindow(nsIBrowserDOMWindow* aBrowserWindow,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetAttention(mozilla::ErrorResult& aError);
|
|
|
|
void GetAttentionWithCycleCount(int32_t aCycleCount,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetCursorOuter(const nsAString& aCursor, mozilla::ErrorResult& aError);
|
2014-02-05 20:37:30 -08:00
|
|
|
void SetCursor(const nsAString& aCursor, mozilla::ErrorResult& aError);
|
|
|
|
void Maximize(mozilla::ErrorResult& aError);
|
|
|
|
void Minimize(mozilla::ErrorResult& aError);
|
|
|
|
void Restore(mozilla::ErrorResult& aError);
|
|
|
|
void NotifyDefaultButtonLoaded(mozilla::dom::Element& aDefaultButton,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
nsIMessageBroadcaster* GetMessageManager(mozilla::ErrorResult& aError);
|
2014-05-23 05:51:56 -07:00
|
|
|
nsIMessageBroadcaster* GetGroupMessageManager(const nsAString& aGroup,
|
|
|
|
mozilla::ErrorResult& aError);
|
2014-03-04 16:37:43 -08:00
|
|
|
void BeginWindowMove(mozilla::dom::Event& aMouseDownEvent,
|
2014-02-05 20:37:30 -08:00
|
|
|
mozilla::dom::Element* aPanel,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
2015-07-16 22:10:35 -07:00
|
|
|
void GetDialogArgumentsOuter(JSContext* aCx, JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
2014-06-11 13:26:52 -07:00
|
|
|
void GetDialogArguments(JSContext* aCx, JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void GetReturnValueOuter(JSContext* aCx, JS::MutableHandle<JS::Value> aReturnValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
2014-06-11 13:26:52 -07:00
|
|
|
void GetReturnValue(JSContext* aCx, JS::MutableHandle<JS::Value> aReturnValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetReturnValueOuter(JSContext* aCx, JS::Handle<JS::Value> aReturnValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
2014-02-05 13:09:18 -08:00
|
|
|
void SetReturnValue(JSContext* aCx, JS::Handle<JS::Value> aReturnValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
2014-06-11 13:26:52 -07:00
|
|
|
void GetInterface(JSContext* aCx, nsIJSID* aIID,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
2014-02-15 13:12:33 -08:00
|
|
|
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsWindowRoot> GetWindowRootOuter();
|
2015-04-17 13:17:26 -07:00
|
|
|
already_AddRefed<nsWindowRoot> GetWindowRoot(mozilla::ErrorResult& aError);
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
protected:
|
2015-04-08 19:50:45 -07:00
|
|
|
// Web IDL helpers
|
|
|
|
|
|
|
|
// Redefine the property called aPropName on this window object to be a value
|
|
|
|
// property with the value aValue, much like we would do for a [Replaceable]
|
|
|
|
// property in IDL.
|
|
|
|
void RedefineProperty(JSContext* aCx, const char* aPropName,
|
|
|
|
JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
2015-04-08 19:50:45 -07:00
|
|
|
// Implementation guts for our writable IDL attributes that are really
|
|
|
|
// supposed to be readonly replaceable.
|
|
|
|
typedef int32_t (nsGlobalWindow::*WindowCoordGetter)(mozilla::ErrorResult&);
|
|
|
|
typedef void (nsGlobalWindow::*WindowCoordSetter)(int32_t,
|
|
|
|
mozilla::ErrorResult&);
|
|
|
|
void GetReplaceableWindowCoord(JSContext* aCx, WindowCoordGetter aGetter,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetReplaceableWindowCoord(JSContext* aCx, WindowCoordSetter aSetter,
|
|
|
|
JS::Handle<JS::Value> aValue,
|
|
|
|
const char* aPropName,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
// And the implementations of WindowCoordGetter/WindowCoordSetter.
|
2015-07-16 22:10:35 -07:00
|
|
|
int32_t GetInnerWidthOuter(mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
int32_t GetInnerWidth(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetInnerWidthOuter(int32_t aInnerWidth, mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
void SetInnerWidth(int32_t aInnerWidth, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
int32_t GetInnerHeightOuter(mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
int32_t GetInnerHeight(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetInnerHeightOuter(int32_t aInnerHeight, mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
void SetInnerHeight(int32_t aInnerHeight, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
int32_t GetScreenXOuter(mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
int32_t GetScreenX(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetScreenXOuter(int32_t aScreenX, mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
void SetScreenX(int32_t aScreenX, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
int32_t GetScreenYOuter(mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
int32_t GetScreenY(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetScreenYOuter(int32_t aScreenY, mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
void SetScreenY(int32_t aScreenY, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
int32_t GetOuterWidthOuter(mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
int32_t GetOuterWidth(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetOuterWidthOuter(int32_t aOuterWidth, mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
void SetOuterWidth(int32_t aOuterWidth, mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
int32_t GetOuterHeightOuter(mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
int32_t GetOuterHeight(mozilla::ErrorResult& aError);
|
2015-07-16 22:10:35 -07:00
|
|
|
void SetOuterHeightOuter(int32_t aOuterHeight, mozilla::ErrorResult& aError);
|
2015-04-08 19:50:45 -07:00
|
|
|
void SetOuterHeight(int32_t aOuterHeight, mozilla::ErrorResult& aError);
|
|
|
|
|
2012-06-29 01:32:21 -07: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.
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mIdleFuzzFactor;
|
2012-06-29 01:32:21 -07:00
|
|
|
|
|
|
|
// Index in mArrayIdleObservers
|
|
|
|
// Next idle observer to notify user idle status
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t mIdleCallbackIndex;
|
2012-06-29 01:32:21 -07:00
|
|
|
|
|
|
|
// 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;
|
|
|
|
|
2014-01-07 04:16:07 -08:00
|
|
|
nsRefPtr<mozilla::dom::WakeLock> mWakeLock;
|
2012-11-01 05:40:11 -07:00
|
|
|
|
2012-06-29 01:32:21 -07:00
|
|
|
static bool sIdleObserversAPIFuzzTimeDisabled;
|
|
|
|
|
2011-03-31 13:30:32 -07:00
|
|
|
friend class HashchangeCallback;
|
2013-05-31 03:30:00 -07:00
|
|
|
friend class mozilla::dom::BarProp;
|
2011-03-31 13:30:32 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Object Management
|
|
|
|
virtual ~nsGlobalWindow();
|
2013-12-17 16:12:33 -08:00
|
|
|
void DropOuterWindowDocs();
|
2013-07-26 15:46:13 -07:00
|
|
|
void CleanUp();
|
2007-03-22 10:30:00 -07:00
|
|
|
void ClearControllers();
|
2014-05-20 12:50:58 -07:00
|
|
|
// Outer windows only.
|
|
|
|
void FinalClose();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-05-09 08:10:18 -07:00
|
|
|
inline void MaybeClearInnerWindow(nsGlobalWindow* aExpectedInner)
|
|
|
|
{
|
|
|
|
if(mInnerWindow == aExpectedInner) {
|
2012-07-30 07:20:58 -07:00
|
|
|
mInnerWindow = nullptr;
|
2012-05-09 08:10:18 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-15 04:06:39 -07:00
|
|
|
void FreeInnerObjects();
|
2008-01-29 21:30:11 -08:00
|
|
|
nsGlobalWindow *CallerInnerWindow();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-06-17 01:11:16 -07:00
|
|
|
// Only to be called on an inner window.
|
|
|
|
// aDocument must not be null.
|
2014-02-05 13:09:19 -08:00
|
|
|
void InnerSetNewDocument(JSContext* aCx, nsIDocument* aDocument);
|
2010-03-12 16:59:18 -08:00
|
|
|
|
2014-06-29 08:31:09 -07:00
|
|
|
// Inner windows only.
|
2009-10-06 17:09:16 -07:00
|
|
|
nsresult DefineArgumentsProperty(nsIArray *aArguments);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Get the parent, returns null if this is a toplevel window
|
2011-07-15 03:31:34 -07:00
|
|
|
nsIDOMWindow* GetParentInternal();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// popup tracking
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsPopupSpamWindow()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (IsInnerWindow() && !mOuterWindow) {
|
2011-10-17 07:59:28 -07:00
|
|
|
return false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return GetOuterWindowInternal()->mIsPopupSpam;
|
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
void SetPopupSpamWindow(bool aPopup)
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
|
|
|
if (IsInnerWindow() && !mOuterWindow) {
|
|
|
|
NS_ERROR("SetPopupSpamWindow() called on inner window w/o an outer!");
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
GetOuterWindowInternal()->mIsPopupSpam = aPopup;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Window Control Functions
|
2012-08-14 07:58:00 -07:00
|
|
|
|
2014-06-29 08:36:03 -07:00
|
|
|
// Outer windows only.
|
2012-08-14 07:58:00 -07:00
|
|
|
virtual nsresult
|
|
|
|
OpenNoNavigate(const nsAString& aUrl,
|
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
2015-03-21 09:28:04 -07:00
|
|
|
nsIDOMWindow** _retval) override;
|
2012-08-14 07:58:00 -07:00
|
|
|
|
2014-06-29 08:36:03 -07:00
|
|
|
private:
|
2007-03-22 10:30:00 -07:00
|
|
|
/**
|
2012-08-14 07:58:00 -07:00
|
|
|
* @param aUrl the URL we intend to load into the window. If aNavigate is
|
|
|
|
* true, we'll actually load this URL into the window. Otherwise,
|
|
|
|
* aUrl is advisory; OpenInternal will not load the URL into the
|
|
|
|
* new window.
|
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aName the name to use for the new window
|
2012-08-14 07:58:00 -07:00
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aOptions the window options to use for the new window
|
2012-08-14 07:58:00 -07:00
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aDialog true when called from variants of OpenDialog. If this is
|
2012-08-14 07:58:00 -07:00
|
|
|
* true, this method will skip popup blocking checks. The aDialog
|
|
|
|
* argument is passed on to the window watcher.
|
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aCalledNoScript true when called via the [noscript] open()
|
2012-08-14 07:58:00 -07:00
|
|
|
* and openDialog() methods. When this is true, we do NOT want to use
|
|
|
|
* the JS stack for things like caller determination.
|
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aDoJSFixups true when this is the content-accessible JS version of
|
2012-08-14 07:58:00 -07:00
|
|
|
* 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 aNavigate true if we should navigate to the provided URL, false
|
|
|
|
* otherwise. When aNavigate is false, we also skip our can-load
|
|
|
|
* security check, on the assumption that whoever *actually* loads this
|
|
|
|
* page will do their own security check.
|
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param argv The arguments to pass to the new window. The first
|
2012-08-14 07:58:00 -07:00
|
|
|
* three args, if present, will be aUrl, aName, and aOptions. So this
|
|
|
|
* param only matters if there are more than 3 arguments.
|
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param argc The number of arguments in argv.
|
2012-08-14 07:58:00 -07:00
|
|
|
*
|
2007-03-22 10:30:00 -07:00
|
|
|
* @param aExtraArgument Another way to pass arguments in. This is mutually
|
2012-08-14 07:58:00 -07:00
|
|
|
* exclusive with the argv/argc approach.
|
|
|
|
*
|
|
|
|
* @param aJSCallerContext The calling script's context. This must be null
|
|
|
|
* when aCalledNoScript is true.
|
2012-07-23 20:30:12 -07:00
|
|
|
*
|
2012-08-14 07:58:00 -07:00
|
|
|
* @param aReturn [out] The window that was opened, if any.
|
2014-06-29 08:36:03 -07:00
|
|
|
*
|
|
|
|
* Outer windows only.
|
2007-03-22 10:30:00 -07:00
|
|
|
*/
|
2014-06-02 05:08:21 -07:00
|
|
|
nsresult OpenInternal(const nsAString& aUrl,
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
2011-09-28 23:19:26 -07:00
|
|
|
bool aDialog,
|
|
|
|
bool aContentModal,
|
|
|
|
bool aCalledNoScript,
|
|
|
|
bool aDoJSFixups,
|
2012-08-14 07:58:00 -07:00
|
|
|
bool aNavigate,
|
2007-03-22 10:30:00 -07:00
|
|
|
nsIArray *argv,
|
|
|
|
nsISupports *aExtraArgument,
|
|
|
|
nsIPrincipal *aCalleePrincipal,
|
|
|
|
JSContext *aJSCallerContext,
|
|
|
|
nsIDOMWindow **aReturn);
|
|
|
|
|
2014-06-29 08:36:03 -07:00
|
|
|
public:
|
2007-03-22 10:30:00 -07:00
|
|
|
// Timeout Functions
|
2010-07-15 06:59:24 -07:00
|
|
|
// Language agnostic timeout function (all args passed).
|
|
|
|
// |interval| is in milliseconds.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult SetTimeoutOrInterval(nsIScriptTimeoutHandler *aHandler,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t interval,
|
2015-03-21 09:28:04 -07:00
|
|
|
bool aIsInterval, int32_t* aReturn) override;
|
2015-09-03 16:03:19 -07:00
|
|
|
int32_t SetTimeoutOrInterval(JSContext* aCx,
|
|
|
|
mozilla::dom::Function& aFunction,
|
2013-10-08 08:51:42 -07:00
|
|
|
int32_t aTimeout,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aArguments,
|
|
|
|
bool aIsInterval, mozilla::ErrorResult& aError);
|
|
|
|
int32_t SetTimeoutOrInterval(JSContext* aCx, const nsAString& aHandler,
|
|
|
|
int32_t aTimeout, bool aIsInterval,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void ClearTimeoutOrInterval(int32_t aTimerID,
|
|
|
|
mozilla::ErrorResult& aError);
|
2015-03-21 09:28:04 -07:00
|
|
|
nsresult ClearTimeoutOrInterval(int32_t aTimerID) override
|
2013-10-08 08:51:42 -07:00
|
|
|
{
|
|
|
|
mozilla::ErrorResult rv;
|
|
|
|
ClearTimeoutOrInterval(aTimerID, rv);
|
2015-04-27 06:18:51 -07:00
|
|
|
return rv.StealNSResult();
|
2013-10-08 08:51:42 -07:00
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// JS specific timeout functions (JS args grabbed from context).
|
2011-06-29 12:49:42 -07:00
|
|
|
nsresult ResetTimersForNonBackgroundWindow();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// The timeout implementation functions.
|
|
|
|
void RunTimeout(nsTimeout *aTimeout);
|
2012-07-30 07:20:58 -07:00
|
|
|
void RunTimeout() { RunTimeout(nullptr); }
|
2012-04-24 11:16:29 -07: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);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void ClearAllTimeouts();
|
|
|
|
// Insert aTimeout into the list, before all timeouts that would
|
|
|
|
// fire after it, but no earlier than mTimeoutInsertionPoint, if any.
|
|
|
|
void InsertTimeoutIntoList(nsTimeout *aTimeout);
|
|
|
|
static void TimerCallback(nsITimer *aTimer, void *aClosure);
|
2015-09-10 00:50:51 -07:00
|
|
|
static void TimerNameCallback(nsITimer* aTimer, void* aClosure, char* aBuf,
|
|
|
|
size_t aLen);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Helper Functions
|
2013-04-25 23:51:01 -07:00
|
|
|
already_AddRefed<nsIDocShellTreeOwner> GetTreeOwner();
|
|
|
|
already_AddRefed<nsIBaseWindow> GetTreeOwnerWindow();
|
2013-04-25 23:51:04 -07:00
|
|
|
already_AddRefed<nsIWebBrowserChrome> GetWebBrowserChrome();
|
2007-03-22 10:30:00 -07:00
|
|
|
nsresult SecurityCheckURL(const char *aURL);
|
2015-06-26 19:36:40 -07:00
|
|
|
bool IsPrivateBrowsing();
|
2014-04-17 00:02:36 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool PopupWhitelisted();
|
2009-09-16 11:46:05 -07:00
|
|
|
PopupControlState RevisePopupAbuseLevel(PopupControlState);
|
2011-09-28 23:19:26 -07:00
|
|
|
void FireAbuseEvents(bool aBlocked, bool aWindow,
|
2007-03-22 10:30:00 -07:00
|
|
|
const nsAString &aPopupURL,
|
|
|
|
const nsAString &aPopupWindowName,
|
|
|
|
const nsAString &aPopupWindowFeatures);
|
2014-08-26 19:42:13 -07:00
|
|
|
void FireOfflineStatusEventIfChanged();
|
2012-06-29 01:32:21 -07:00
|
|
|
|
2015-03-03 22:16:21 -08:00
|
|
|
bool GetIsPrerendered();
|
|
|
|
|
2013-11-28 06:07:55 -08:00
|
|
|
// Inner windows only.
|
2012-06-29 01:32:21 -07:00
|
|
|
nsresult ScheduleNextIdleObserverCallback();
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t GetFuzzTimeMS();
|
2012-06-29 01:32:21 -07:00
|
|
|
nsresult ScheduleActiveTimerCallback();
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t FindInsertionIndex(IdleObserverHolder* aIdleObserver);
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult RegisterIdleObserver(nsIIdleObserver* aIdleObserverPtr) override;
|
2012-06-29 01:32:21 -07:00
|
|
|
nsresult FindIndexOfElementToRemove(nsIIdleObserver* aIdleObserver,
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t* aRemoveElementIndex);
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual nsresult UnregisterIdleObserver(nsIIdleObserver* aIdleObserverPtr) override;
|
2012-06-29 01:32:21 -07:00
|
|
|
|
2013-11-28 06:07:55 -08:00
|
|
|
// Inner windows only.
|
2011-03-31 13:30:32 -07:00
|
|
|
nsresult FireHashchange(const nsAString &aOldURL, const nsAString &aNewURL);
|
2009-11-26 21:01:43 -08:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
void FlushPendingNotifications(mozFlushType aType);
|
2013-11-28 06:07:55 -08:00
|
|
|
|
|
|
|
// Outer windows only.
|
2007-03-22 10:30:00 -07:00
|
|
|
void EnsureReflowFlushAndPaint();
|
2013-04-25 23:50:54 -07:00
|
|
|
void CheckSecurityWidthAndHeight(int32_t* width, int32_t* height);
|
|
|
|
void CheckSecurityLeftAndTop(int32_t* left, int32_t* top);
|
2010-12-21 14:35:09 -08:00
|
|
|
|
2013-11-28 06:07:55 -08:00
|
|
|
// Outer windows only.
|
2010-12-21 14:35:09 -08:00
|
|
|
// Arguments to this function should have values in app units
|
2013-04-25 23:50:54 -07:00
|
|
|
void SetCSSViewportWidthAndHeight(nscoord width, nscoord height);
|
2010-12-21 14:35:09 -08:00
|
|
|
// Arguments to this function should have values in device pixels
|
2012-08-22 08:56:38 -07:00
|
|
|
nsresult SetDocShellWidthAndHeight(int32_t width, int32_t height);
|
2010-12-21 14:35:09 -08:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
static bool CanSetProperty(const char *aPrefName);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
static void MakeScriptDialogTitle(nsAString &aOutTitle);
|
|
|
|
|
2013-11-28 06:07:55 -08:00
|
|
|
// Outer windows only.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool CanMoveResizeWindows();
|
2008-03-19 13:27:34 -07:00
|
|
|
|
2007-03-22 10:30:00 -07: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.
|
2014-06-29 08:31:12 -07:00
|
|
|
// Outer windows only.
|
|
|
|
mozilla::CSSIntPoint GetScrollXY(bool aDoFlush);
|
|
|
|
|
2015-07-16 22:10:35 -07:00
|
|
|
void GetScrollMaxXYOuter(int32_t* aScrollMaxX, int32_t* aScrollMaxY);
|
2013-10-08 08:51:42 -07:00
|
|
|
void GetScrollMaxXY(int32_t* aScrollMaxX, int32_t* aScrollMaxY,
|
|
|
|
mozilla::ErrorResult& aError);
|
2012-06-29 01:32:21 -07:00
|
|
|
|
2013-07-01 00:14:24 -07:00
|
|
|
// Outer windows only.
|
|
|
|
nsresult GetInnerSize(mozilla::CSSIntSize& aSize);
|
2013-10-08 08:51:42 -07:00
|
|
|
nsIntSize GetOuterSize(mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterSize(int32_t aLengthCSSPixels, bool aIsWidth,
|
|
|
|
mozilla::ErrorResult& aError);
|
2009-07-29 20:16:44 -07:00
|
|
|
nsRect GetInnerScreenRect();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-08-05 15:01:34 -07:00
|
|
|
void ScrollTo(const mozilla::CSSIntPoint& aScroll,
|
|
|
|
const mozilla::dom::ScrollOptions& aOptions);
|
2013-07-01 00:14:34 -07:00
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsFrame()
|
2007-03-22 10:30:00 -07:00
|
|
|
{
|
2012-07-30 07:20:58 -07:00
|
|
|
return GetParentInternal() != nullptr;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2013-11-28 06:07:55 -08:00
|
|
|
// Outer windows only.
|
2007-03-22 10:30:00 -07: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-28 23:19:26 -07:00
|
|
|
bool WindowExists(const nsAString& aName, bool aLookForCallerOnJSStack);
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
already_AddRefed<nsIWidget> GetMainWidget();
|
2015-08-28 18:12:41 -07:00
|
|
|
nsIWidget* GetNearestWidget() const;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
void Freeze()
|
|
|
|
{
|
|
|
|
NS_ASSERTION(!IsFrozen(), "Double-freezing?");
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsFrozen = true;
|
2011-05-22 14:30:07 -07:00
|
|
|
NotifyDOMWindowFrozen(this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void Thaw()
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsFrozen = false;
|
2011-05-22 14:30:07 -07:00
|
|
|
NotifyDOMWindowThawed(this);
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2011-09-28 23:19:26 -07:00
|
|
|
bool IsInModalState();
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2009-02-10 00:29:53 -08: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.
|
2012-08-22 08:56:38 -07:00
|
|
|
int32_t DevToCSSIntPixels(int32_t px);
|
|
|
|
int32_t CSSToDevIntPixels(int32_t px);
|
2009-02-10 00:29:53 -08:00
|
|
|
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 11:00:39 -07:00
|
|
|
virtual void SetFocusedNode(nsIContent* aNode,
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t aFocusMethod = 0,
|
2015-03-21 09:28:04 -07:00
|
|
|
bool aNeedsFocus = false) override;
|
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 11:00:39 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual uint32_t GetFocusMethod() override;
|
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 11:00:39 -07:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual bool ShouldShowFocusRing() override;
|
2010-04-21 07:53:42 -07:00
|
|
|
|
|
|
|
virtual void SetKeyboardIndicators(UIStateChangeType aShowAccelerators,
|
2015-03-21 09:28:04 -07:00
|
|
|
UIStateChangeType aShowFocusRings) override;
|
2011-09-28 23:19:26 -07:00
|
|
|
virtual void GetKeyboardIndicators(bool* aShowAccelerators,
|
2015-03-21 09:28:04 -07:00
|
|
|
bool* aShowFocusRings) override;
|
2010-04-21 07:53:42 -07:00
|
|
|
|
2013-11-28 06:07:55 -08:00
|
|
|
// Inner windows only.
|
2011-09-28 23:19:26 -07: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 11:00:39 -07:00
|
|
|
|
2013-04-04 00:02:11 -07:00
|
|
|
public:
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual already_AddRefed<nsPIWindowRoot> GetTopWindowRoot() override;
|
2010-02-20 08:07:03 -08:00
|
|
|
|
2013-04-04 00:02:11 -07:00
|
|
|
protected:
|
2008-02-13 15:41:17 -08:00
|
|
|
static void NotifyDOMWindowDestroyed(nsGlobalWindow* aWindow);
|
2010-05-14 14:17:52 -07:00
|
|
|
void NotifyWindowIDDestroyed(const char* aTopic);
|
2011-05-22 14:30:07 -07:00
|
|
|
|
|
|
|
static void NotifyDOMWindowFrozen(nsGlobalWindow* aWindow);
|
|
|
|
static void NotifyDOMWindowThawed(nsGlobalWindow* aWindow);
|
2012-06-29 01:32:21 -07:00
|
|
|
|
2010-06-01 13:36:16 -07:00
|
|
|
void ClearStatus();
|
2008-02-13 15:41:17 -08:00
|
|
|
|
2015-03-21 09:28:04 -07:00
|
|
|
virtual void UpdateParentTarget() override;
|
2010-06-16 04:43:36 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
inline int32_t DOMMinTimeoutValue() const;
|
2011-03-25 18:05:55 -07:00
|
|
|
|
2014-09-05 19:42:33 -07:00
|
|
|
// Clear the document-dependent slots on our JS wrapper. Inner windows only.
|
|
|
|
void ClearDocumentDependentSlots(JSContext* aCx);
|
2014-06-29 08:36:03 -07:00
|
|
|
|
|
|
|
// Inner windows only.
|
2014-05-23 00:33:24 -07:00
|
|
|
already_AddRefed<mozilla::dom::StorageEvent>
|
|
|
|
CloneStorageEvent(const nsAString& aType,
|
2014-08-13 05:56:25 -07:00
|
|
|
const nsRefPtr<mozilla::dom::StorageEvent>& aEvent,
|
|
|
|
mozilla::ErrorResult& aRv);
|
2012-03-24 01:18:21 -07:00
|
|
|
|
2012-10-02 01:07:35 -07:00
|
|
|
// Outer windows only.
|
|
|
|
nsDOMWindowList* GetWindowList();
|
|
|
|
|
2012-10-17 14:01:56 -07:00
|
|
|
// Helper for getComputedStyle and getDefaultComputedStyle
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsICSSDeclaration>
|
|
|
|
GetComputedStyleHelperOuter(mozilla::dom::Element& aElt,
|
|
|
|
const nsAString& aPseudoElt,
|
|
|
|
bool aDefaultStylesOnly);
|
2013-10-08 08:51:42 -07:00
|
|
|
already_AddRefed<nsICSSDeclaration>
|
|
|
|
GetComputedStyleHelper(mozilla::dom::Element& aElt,
|
|
|
|
const nsAString& aPseudoElt,
|
|
|
|
bool aDefaultStylesOnly,
|
|
|
|
mozilla::ErrorResult& aError);
|
2012-10-17 14:01:56 -07:00
|
|
|
nsresult GetComputedStyleHelper(nsIDOMElement* aElt,
|
|
|
|
const nsAString& aPseudoElt,
|
|
|
|
bool aDefaultStylesOnly,
|
|
|
|
nsIDOMCSSStyleDeclaration** aReturn);
|
|
|
|
|
2014-05-20 12:50:58 -07:00
|
|
|
// Outer windows only.
|
2013-04-15 05:38:48 -07:00
|
|
|
void PreloadLocalStorage();
|
|
|
|
|
2013-12-02 21:36:33 -08:00
|
|
|
// Returns device pixels. Outer windows only.
|
2013-10-08 08:51:42 -07:00
|
|
|
nsIntPoint GetScreenXY(mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
nsGlobalWindow* InnerForSetTimeoutOrInterval(mozilla::ErrorResult& aError);
|
|
|
|
|
2015-07-16 22:10:35 -07:00
|
|
|
void PostMessageMozOuter(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
|
|
const nsAString& aTargetOrigin,
|
|
|
|
JS::Handle<JS::Value> aTransfer,
|
|
|
|
mozilla::ErrorResult& aError);
|
2013-10-08 08:51:42 -07:00
|
|
|
void PostMessageMoz(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
|
|
const nsAString& aTargetOrigin,
|
|
|
|
JS::Handle<JS::Value> aTransfer,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
2015-07-16 22:10:35 -07:00
|
|
|
already_AddRefed<nsIVariant>
|
|
|
|
ShowModalDialogOuter(const nsAString& aUrl, nsIVariant* aArgument,
|
|
|
|
const nsAString& aOptions, mozilla::ErrorResult& aError);
|
|
|
|
|
2013-10-08 08:51:42 -07:00
|
|
|
already_AddRefed<nsIVariant>
|
|
|
|
ShowModalDialog(const nsAString& aUrl, nsIVariant* aArgument,
|
|
|
|
const nsAString& aOptions, mozilla::ErrorResult& aError);
|
|
|
|
|
2013-12-14 09:52:13 -08:00
|
|
|
// Ask the user if further dialogs should be blocked, if dialogs are currently
|
|
|
|
// being abused. This is used in the cases where we have no modifiable UI to
|
|
|
|
// show, in that case we show a separate dialog to ask this question.
|
|
|
|
bool ConfirmDialogIfNeeded();
|
|
|
|
|
2015-07-14 12:28:57 -07:00
|
|
|
private:
|
|
|
|
// Fire the JS engine's onNewGlobalObject hook. Only used on inner windows.
|
|
|
|
void FireOnNewGlobalObject();
|
|
|
|
|
2015-07-24 13:05:14 -07:00
|
|
|
void DisconnectEventTargetObjects();
|
|
|
|
|
2015-07-14 12:28:57 -07:00
|
|
|
protected:
|
2007-03-22 10:30:00 -07: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-28 23:19:26 -07:00
|
|
|
bool mIsFrozen : 1;
|
2012-06-29 01:32:21 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// These members are only used on outer window objects. Make sure
|
|
|
|
// you never set any of these on an inner object!
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mFullScreen : 1;
|
2015-05-05 15:04:31 -07:00
|
|
|
bool mFullscreenMode : 1;
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsClosed : 1;
|
|
|
|
bool mInClose : 1;
|
2007-03-22 10:30:00 -07: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-28 23:19:26 -07:00
|
|
|
bool mHavePendingClose : 1;
|
|
|
|
bool mHadOriginalOpener : 1;
|
|
|
|
bool mIsPopupSpam : 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Indicates whether scripts are allowed to close this window.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mBlockScriptedClosingFlag : 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-08-26 19:42:13 -07:00
|
|
|
// Window offline status. Checked to see if we need to fire offline event
|
|
|
|
bool mWasOffline : 1;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// Track what sorts of events we need to fire when thawed
|
2012-06-29 01:32:21 -07:00
|
|
|
bool mNotifyIdleObserversIdleOnThaw : 1;
|
|
|
|
bool mNotifyIdleObserversActiveOnThaw : 1;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// Indicates whether we're in the middle of creating an initializing
|
|
|
|
// a new inner window object.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mCreatingInnerWindow : 1;
|
2007-08-02 16:34:38 -07:00
|
|
|
|
|
|
|
// Fast way to tell if this is a chrome window (without having to QI).
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mIsChrome : 1;
|
2007-08-02 16:34:38 -07:00
|
|
|
|
2011-01-23 11:51:00 -08: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-28 23:19:26 -07:00
|
|
|
bool mCleanMessageManager : 1;
|
2011-01-23 11:51:00 -08: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 11:00:39 -07:00
|
|
|
// Indicates that the current document has never received a document focus
|
|
|
|
// event.
|
2011-09-28 23:19:26 -07: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 11:00:39 -07:00
|
|
|
|
2010-04-21 07:53:42 -07:00
|
|
|
// whether to show keyboard accelerators
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mShowAccelerators : 1;
|
2010-04-21 07:53:42 -07:00
|
|
|
|
|
|
|
// whether to show focus rings
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mShowFocusRings : 1;
|
2010-04-21 07:53:42 -07:00
|
|
|
|
|
|
|
// when true, show focus rings for the current focused content only.
|
|
|
|
// This will be reset when another element is focused
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mShowFocusRingForContent : 1;
|
2010-04-21 07:53:42 -07:00
|
|
|
|
2010-05-13 05:19:50 -07:00
|
|
|
// true if tab navigation has occurred for this window. Focus rings
|
2010-04-21 07:53:42 -07:00
|
|
|
// should be displayed.
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mFocusByKeyOccurred : 1;
|
2010-04-21 07:53:42 -07:00
|
|
|
|
2014-02-20 12:55:40 -08:00
|
|
|
// Ensure that a call to ResumeTimeouts() after FreeInnerObjects() does nothing.
|
|
|
|
// This member is only used by inner windows.
|
|
|
|
bool mInnerObjectsFreed : 1;
|
|
|
|
|
2014-06-29 08:36:02 -07:00
|
|
|
// Inner windows only.
|
2011-08-03 11:12:08 -07:00
|
|
|
// Indicates whether this window wants gamepad input events
|
|
|
|
bool mHasGamepad : 1;
|
|
|
|
#ifdef MOZ_GAMEPAD
|
2015-04-23 15:05:29 -07:00
|
|
|
nsCheapSet<nsUint32HashKey> mGamepadIndexSet;
|
2012-02-15 16:47:13 -08:00
|
|
|
nsRefPtrHashtable<nsUint32HashKey, mozilla::dom::Gamepad> mGamepads;
|
2011-08-03 11:12:08 -07:00
|
|
|
bool mHasSeenGamepadInput;
|
|
|
|
#endif
|
|
|
|
|
2010-05-14 14:17:52 -07:00
|
|
|
// whether we've sent the destroy notification for our window id
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mNotifiedIDDestroyed : 1;
|
2012-10-12 03:17:56 -07:00
|
|
|
// whether scripts may close the window,
|
|
|
|
// even if "dom.allow_scripts_to_close_windows" is false.
|
|
|
|
bool mAllowScriptsToClose : 1;
|
2010-05-14 14:17:52 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIScriptContext> mContext;
|
2008-02-08 13:09:36 -08:00
|
|
|
nsWeakPtr mOpener;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIControllers> mControllers;
|
2013-05-17 10:43:19 -07:00
|
|
|
|
|
|
|
// For |window.arguments|, via |openDialog|.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIArray> mArguments;
|
2013-05-17 10:43:19 -07:00
|
|
|
|
|
|
|
// For |window.dialogArguments|, via |showModalDialog|.
|
|
|
|
nsRefPtr<DialogValueHolder> mDialogArguments;
|
|
|
|
|
2014-02-05 13:09:18 -08:00
|
|
|
// Only used in the outer.
|
|
|
|
nsRefPtr<DialogValueHolder> mReturnValue;
|
|
|
|
|
2013-10-08 08:51:42 -07:00
|
|
|
nsRefPtr<mozilla::dom::Navigator> mNavigator;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsRefPtr<nsScreen> mScreen;
|
|
|
|
nsRefPtr<nsDOMWindowList> mFrames;
|
2015-07-16 22:10:35 -07:00
|
|
|
// All BarProps are inner window only.
|
2013-05-31 03:30:00 -07:00
|
|
|
nsRefPtr<mozilla::dom::BarProp> mMenubar;
|
|
|
|
nsRefPtr<mozilla::dom::BarProp> mToolbar;
|
|
|
|
nsRefPtr<mozilla::dom::BarProp> mLocationbar;
|
|
|
|
nsRefPtr<mozilla::dom::BarProp> mPersonalbar;
|
|
|
|
nsRefPtr<mozilla::dom::BarProp> mStatusbar;
|
|
|
|
nsRefPtr<mozilla::dom::BarProp> mScrollbars;
|
2012-04-01 19:23:51 -07:00
|
|
|
nsRefPtr<nsDOMWindowUtils> mWindowUtils;
|
2007-03-22 10:30:00 -07:00
|
|
|
nsString mStatus;
|
|
|
|
nsString mDefaultStatus;
|
2015-04-19 08:11:03 -07:00
|
|
|
nsRefPtr<nsGlobalWindowObserver> mObserver; // Inner windows only.
|
2015-02-02 06:36:04 -08:00
|
|
|
nsRefPtr<mozilla::dom::Crypto> mCrypto;
|
2015-03-02 05:22:00 -08:00
|
|
|
nsRefPtr<mozilla::dom::cache::CacheStorage> mCacheStorage;
|
2014-02-27 15:39:00 -08:00
|
|
|
nsRefPtr<mozilla::dom::Console> mConsole;
|
2014-03-27 21:03:03 -07:00
|
|
|
// We need to store an nsISupports pointer to this object because the
|
|
|
|
// mozilla::dom::External class doesn't exist on b2g and using the type
|
|
|
|
// forward declared here means that ~nsGlobalWindow wouldn't compile because
|
|
|
|
// it wouldn't see the ~External function's declaration.
|
|
|
|
nsCOMPtr<nsISupports> mExternal;
|
2013-02-16 20:43:16 -08:00
|
|
|
|
2014-08-26 07:11:15 -07:00
|
|
|
nsRefPtr<mozilla::dom::MozSelfSupport> mMozSelfSupport;
|
|
|
|
|
2014-07-22 22:07:12 -07:00
|
|
|
nsRefPtr<mozilla::dom::DOMStorage> mLocalStorage;
|
|
|
|
nsRefPtr<mozilla::dom::DOMStorage> mSessionStorage;
|
2009-03-18 16:43:45 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
// These member variable are used only on inner windows.
|
2014-03-16 23:56:53 -07:00
|
|
|
nsRefPtr<mozilla::EventListenerManager> mListenerManager;
|
2011-07-08 11:04:25 -07: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.
|
2012-11-01 07:06:22 -07:00
|
|
|
mozilla::LinkedList<nsTimeout> mTimeouts;
|
2007-03-22 10:30:00 -07:00
|
|
|
// If mTimeoutInsertionPoint is non-null, insertions should happen after it.
|
2011-07-08 11:04:25 -07:00
|
|
|
// This is a dummy timeout at the moment; if that ever changes, the logic in
|
|
|
|
// ResetTimersForNonBackgroundWindow needs to change.
|
2007-03-22 10:30:00 -07:00
|
|
|
nsTimeout* mTimeoutInsertionPoint;
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mTimeoutPublicIdCounter;
|
|
|
|
uint32_t mTimeoutFiringDepth;
|
2010-08-06 17:17:33 -07:00
|
|
|
nsRefPtr<nsLocation> mLocation;
|
2011-02-01 09:19:35 -08:00
|
|
|
nsRefPtr<nsHistory> mHistory;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
// These member variables are used on both inner and the outer windows.
|
|
|
|
nsCOMPtr<nsIPrincipal> mDocumentPrincipal;
|
2013-07-23 02:58:26 -07:00
|
|
|
|
2014-05-23 00:33:24 -07:00
|
|
|
typedef nsTArray<nsRefPtr<mozilla::dom::StorageEvent>> nsDOMStorageEventArray;
|
2010-01-28 06:53:53 -08:00
|
|
|
nsDOMStorageEventArray mPendingStorageEvents;
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mTimeoutsSuspendDepth;
|
2009-02-17 12:07:39 -08: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 11:00:39 -07:00
|
|
|
// the method that was used to focus mFocusedNode
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mFocusMethod;
|
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 11:00:39 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mSerial;
|
2010-09-09 15:15:40 -07:00
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
#ifdef DEBUG
|
2011-09-28 23:19:26 -07:00
|
|
|
bool mSetOpenerWindowCalled;
|
2008-04-28 14:51:11 -07:00
|
|
|
nsCOMPtr<nsIURI> mLastOpenedURI;
|
2007-03-22 10:30:00 -07:00
|
|
|
#endif
|
|
|
|
|
2013-08-07 17:07:41 -07:00
|
|
|
#ifdef MOZ_B2G
|
|
|
|
bool mNetworkUploadObserverEnabled;
|
|
|
|
bool mNetworkDownloadObserverEnabled;
|
|
|
|
#endif // MOZ_B2G
|
|
|
|
|
2013-08-07 17:45:54 -07:00
|
|
|
bool mCleanedUp;
|
|
|
|
|
2008-01-16 13:54:33 -08:00
|
|
|
nsCOMPtr<nsIDOMOfflineResourceList> mApplicationCache;
|
|
|
|
|
2013-09-02 01:41:57 -07:00
|
|
|
nsAutoPtr<nsJSThingHashtable<nsPtrHashKey<nsXBLPrototypeHandler>, JSObject*> > mCachedXBLPrototypeHandlers;
|
2008-02-12 20:17:18 -08:00
|
|
|
|
2013-12-17 16:12:33 -08:00
|
|
|
// mSuspendedDoc is only set on outer windows. It's useful when we get matched
|
|
|
|
// EnterModalState/LeaveModalState calls, in which case the outer window is
|
|
|
|
// responsible for unsuspending events on the document. If we don't (for
|
|
|
|
// example, if the outer window is closed before the LeaveModalState call),
|
|
|
|
// then the inner window whose mDoc is our mSuspendedDoc is responsible for
|
|
|
|
// unsuspending it.
|
2009-03-03 12:11:14 -08:00
|
|
|
nsCOMPtr<nsIDocument> mSuspendedDoc;
|
|
|
|
|
2013-03-31 01:18:30 -07:00
|
|
|
nsRefPtr<mozilla::dom::indexedDB::IDBFactory> mIndexedDB;
|
2010-06-23 12:46:08 -07:00
|
|
|
|
2012-08-13 12:03:59 -07:00
|
|
|
// This counts the number of windows that have been opened in rapid succession
|
|
|
|
// (i.e. within dom.successive_dialog_time_limit of each other). It is reset
|
|
|
|
// to 0 once a dialog is opened after dom.successive_dialog_time_limit seconds
|
|
|
|
// have elapsed without any other dialogs.
|
2012-08-22 08:56:38 -07:00
|
|
|
uint32_t mDialogAbuseCount;
|
2010-09-16 18:24:14 -07:00
|
|
|
|
2012-08-13 12:03:59 -07:00
|
|
|
// This holds the time when the last modal dialog was shown. If more than
|
|
|
|
// MAX_DIALOG_LIMIT dialogs are shown within the time span defined by
|
|
|
|
// dom.successive_dialog_time_limit, we show a checkbox or confirmation prompt
|
|
|
|
// to allow disabling of further dialogs from this window.
|
2010-09-16 18:24:14 -07:00
|
|
|
TimeStamp mLastDialogQuitTime;
|
2012-08-13 12:03:59 -07:00
|
|
|
|
2013-10-08 14:00:12 -07:00
|
|
|
// This flag keeps track of whether dialogs are
|
|
|
|
// currently enabled on this window.
|
|
|
|
bool mAreDialogsEnabled;
|
2012-08-13 12:05:34 -07:00
|
|
|
|
2014-03-31 23:13:50 -07:00
|
|
|
nsTHashtable<nsPtrHashKey<mozilla::DOMEventTargetHelper> > mEventTargetObjects;
|
2012-03-12 17:56:07 -07:00
|
|
|
|
2012-08-22 08:56:38 -07:00
|
|
|
nsTArray<uint32_t> mEnabledSensors;
|
2012-03-24 17:30:03 -07:00
|
|
|
|
2013-04-07 05:19:56 -07:00
|
|
|
#ifdef MOZ_WEBSPEECH
|
|
|
|
// mSpeechSynthesis is only used on inner windows.
|
|
|
|
nsRefPtr<mozilla::dom::SpeechSynthesis> mSpeechSynthesis;
|
|
|
|
#endif
|
|
|
|
|
2014-11-13 07:11:55 -08:00
|
|
|
// This is the CC generation the last time we called CanSkip.
|
|
|
|
uint32_t mCanSkipCCGeneration;
|
|
|
|
|
2014-07-09 12:24:49 -07:00
|
|
|
// Did VR get initialized for this window?
|
|
|
|
bool mVRDevicesInitialized;
|
|
|
|
// The VRDevies for this window
|
|
|
|
nsTArray<nsRefPtr<mozilla::dom::VRDevice>> mVRDevices;
|
|
|
|
// Any attached HMD when fullscreen
|
|
|
|
nsRefPtr<mozilla::gfx::VRHMDInfo> mVRHMDInfo;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
friend class nsDOMScriptableHelper;
|
|
|
|
friend class nsDOMWindowUtils;
|
2015-06-17 03:44:27 -07:00
|
|
|
friend class mozilla::dom::PostMessageEvent;
|
2013-04-10 07:20:43 -07:00
|
|
|
friend class DesktopNotification;
|
2010-10-20 17:24:16 -07:00
|
|
|
|
2011-06-29 04:03:54 -07:00
|
|
|
static WindowByIdTable* sWindowsById;
|
2011-08-14 10:22:29 -07:00
|
|
|
static bool sWarnedAboutWindowInternal;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2013-10-08 08:51:42 -07:00
|
|
|
inline nsISupports*
|
|
|
|
ToSupports(nsGlobalWindow *p)
|
|
|
|
{
|
|
|
|
return static_cast<nsIDOMEventTarget*>(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
inline nsISupports*
|
|
|
|
ToCanonicalSupports(nsGlobalWindow *p)
|
|
|
|
{
|
|
|
|
return static_cast<nsIDOMEventTarget*>(p);
|
|
|
|
}
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/*
|
|
|
|
* nsGlobalChromeWindow inherits from nsGlobalWindow. It is the global
|
|
|
|
* object created for a Chrome Window only.
|
|
|
|
*/
|
|
|
|
class nsGlobalChromeWindow : public nsGlobalWindow,
|
|
|
|
public nsIDOMChromeWindow
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
// nsISupports
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
|
|
|
|
// nsIDOMChromeWindow interface
|
|
|
|
NS_DECL_NSIDOMCHROMEWINDOW
|
|
|
|
|
2014-08-26 19:42:13 -07:00
|
|
|
static already_AddRefed<nsGlobalChromeWindow> Create(nsGlobalWindow *aOuterWindow);
|
2011-01-23 11:51:00 -08:00
|
|
|
|
2014-05-23 05:51:56 -07:00
|
|
|
static PLDHashOperator
|
|
|
|
DisconnectGroupMessageManager(const nsAString& aKey,
|
|
|
|
nsIMessageBroadcaster* aMM,
|
|
|
|
void* aUserArg)
|
|
|
|
{
|
|
|
|
if (aMM) {
|
|
|
|
static_cast<nsFrameMessageManager*>(aMM)->Disconnect();
|
|
|
|
}
|
|
|
|
return PL_DHASH_NEXT;
|
|
|
|
}
|
|
|
|
|
2014-07-08 14:23:17 -07:00
|
|
|
protected:
|
2014-08-26 19:42:13 -07:00
|
|
|
explicit nsGlobalChromeWindow(nsGlobalWindow *aOuterWindow)
|
|
|
|
: nsGlobalWindow(aOuterWindow),
|
|
|
|
mGroupMessageManagers(1)
|
|
|
|
{
|
|
|
|
mIsChrome = true;
|
|
|
|
mCleanMessageManager = true;
|
|
|
|
}
|
|
|
|
|
2011-01-23 11:51:00 -08:00
|
|
|
~nsGlobalChromeWindow()
|
|
|
|
{
|
2015-02-09 14:34:50 -08:00
|
|
|
MOZ_ASSERT(mCleanMessageManager,
|
|
|
|
"chrome windows may always disconnect the msg manager");
|
2014-05-23 05:51:56 -07:00
|
|
|
|
|
|
|
mGroupMessageManagers.EnumerateRead(DisconnectGroupMessageManager, nullptr);
|
|
|
|
mGroupMessageManagers.Clear();
|
|
|
|
|
2011-01-23 11:51:00 -08:00
|
|
|
if (mMessageManager) {
|
|
|
|
static_cast<nsFrameMessageManager *>(
|
|
|
|
mMessageManager.get())->Disconnect();
|
|
|
|
}
|
|
|
|
|
2011-10-17 07:59:28 -07:00
|
|
|
mCleanMessageManager = false;
|
2007-03-22 10:30:00 -07:00
|
|
|
}
|
|
|
|
|
2014-07-08 14:23:17 -07:00
|
|
|
public:
|
2011-06-21 07:51:49 -07:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS_INHERITED(nsGlobalChromeWindow,
|
|
|
|
nsGlobalWindow)
|
2007-03-22 10:30:00 -07:00
|
|
|
|
2014-02-05 20:37:30 -08:00
|
|
|
using nsGlobalWindow::GetBrowserDOMWindow;
|
|
|
|
using nsGlobalWindow::SetBrowserDOMWindow;
|
|
|
|
using nsGlobalWindow::GetAttention;
|
|
|
|
using nsGlobalWindow::GetAttentionWithCycleCount;
|
|
|
|
using nsGlobalWindow::SetCursor;
|
|
|
|
using nsGlobalWindow::Maximize;
|
|
|
|
using nsGlobalWindow::Minimize;
|
|
|
|
using nsGlobalWindow::Restore;
|
|
|
|
using nsGlobalWindow::NotifyDefaultButtonLoaded;
|
|
|
|
using nsGlobalWindow::GetMessageManager;
|
2014-05-23 05:51:56 -07:00
|
|
|
using nsGlobalWindow::GetGroupMessageManager;
|
2014-02-05 20:37:30 -08:00
|
|
|
using nsGlobalWindow::BeginWindowMove;
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
nsCOMPtr<nsIBrowserDOMWindow> mBrowserDOMWindow;
|
2012-08-27 07:13:02 -07:00
|
|
|
nsCOMPtr<nsIMessageBroadcaster> mMessageManager;
|
2014-05-23 05:51:56 -07:00
|
|
|
nsInterfaceHashtable<nsStringHashKey, nsIMessageBroadcaster> mGroupMessageManagers;
|
2007-03-22 10:30:00 -07:00
|
|
|
};
|
|
|
|
|
2007-07-26 10:52:26 -07: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:
|
2014-08-26 19:42:13 -07:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
|
|
NS_DECL_NSIDOMMODALCONTENTWINDOW
|
|
|
|
|
|
|
|
static already_AddRefed<nsGlobalModalWindow> Create(nsGlobalWindow *aOuterWindow);
|
|
|
|
|
|
|
|
protected:
|
2014-08-05 06:19:51 -07:00
|
|
|
explicit nsGlobalModalWindow(nsGlobalWindow *aOuterWindow)
|
2007-07-26 10:52:26 -07:00
|
|
|
: nsGlobalWindow(aOuterWindow)
|
|
|
|
{
|
2011-10-17 07:59:28 -07:00
|
|
|
mIsModalContentWindow = true;
|
2007-07-26 10:52:26 -07:00
|
|
|
}
|
|
|
|
|
2014-07-08 14:23:17 -07:00
|
|
|
~nsGlobalModalWindow() {}
|
2007-07-26 10:52:26 -07:00
|
|
|
};
|
|
|
|
|
2007-03-22 10:30:00 -07:00
|
|
|
/* factory function */
|
2012-04-14 06:03:16 -07:00
|
|
|
inline already_AddRefed<nsGlobalWindow>
|
|
|
|
NS_NewScriptGlobalObject(bool aIsChrome, bool aIsModalContentWindow)
|
|
|
|
{
|
|
|
|
nsRefPtr<nsGlobalWindow> global;
|
|
|
|
|
|
|
|
if (aIsChrome) {
|
2014-08-26 19:42:13 -07:00
|
|
|
global = nsGlobalChromeWindow::Create(nullptr);
|
2012-04-14 06:03:16 -07:00
|
|
|
} else if (aIsModalContentWindow) {
|
2014-08-26 19:42:13 -07:00
|
|
|
global = nsGlobalModalWindow::Create(nullptr);
|
2012-04-14 06:03:16 -07:00
|
|
|
} else {
|
2014-08-26 19:42:13 -07:00
|
|
|
global = nsGlobalWindow::Create(nullptr);
|
2012-04-14 06:03:16 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
return global.forget();
|
|
|
|
}
|
2007-03-22 10:30:00 -07:00
|
|
|
|
|
|
|
#endif /* nsGlobalWindow_h___ */
|