2017-11-15 19:30:13 +03: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: */
|
|
|
|
/* 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/. */
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
#ifndef nsGlobalWindowInner_h___
|
|
|
|
#define nsGlobalWindowInner_h___
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
#include "nsPIDOMWindow.h"
|
|
|
|
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsRefPtrHashtable.h"
|
|
|
|
#include "nsInterfaceHashtable.h"
|
|
|
|
|
|
|
|
// Local Includes
|
|
|
|
// Helper Classes
|
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsAutoPtr.h"
|
|
|
|
#include "nsWeakReference.h"
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsJSThingHashtable.h"
|
|
|
|
#include "nsCycleCollectionParticipant.h"
|
|
|
|
|
|
|
|
// Interfaces Needed
|
|
|
|
#include "nsIBrowserDOMWindow.h"
|
|
|
|
#include "nsIInterfaceRequestor.h"
|
|
|
|
#include "nsIDOMChromeWindow.h"
|
|
|
|
#include "nsIScriptGlobalObject.h"
|
|
|
|
#include "nsIScriptObjectPrincipal.h"
|
|
|
|
#include "nsITimer.h"
|
|
|
|
#include "mozilla/EventListenerManager.h"
|
|
|
|
#include "nsIPrincipal.h"
|
|
|
|
#include "nsSize.h"
|
|
|
|
#include "mozilla/FlushType.h"
|
|
|
|
#include "prclist.h"
|
2018-01-08 16:05:03 +03:00
|
|
|
#include "mozilla/dom/DOMPrefs.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
#include "mozilla/dom/BindingDeclarations.h"
|
2017-06-14 17:44:17 +03:00
|
|
|
#include "mozilla/dom/ChromeMessageBroadcaster.h"
|
2018-07-27 07:37:44 +03:00
|
|
|
#include "mozilla/dom/NavigatorBinding.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
#include "mozilla/dom/StorageEvent.h"
|
|
|
|
#include "mozilla/dom/StorageEventBinding.h"
|
|
|
|
#include "mozilla/dom/UnionTypes.h"
|
|
|
|
#include "mozilla/ErrorResult.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/GuardObjects.h"
|
|
|
|
#include "mozilla/LinkedList.h"
|
2018-07-27 07:37:44 +03:00
|
|
|
#include "mozilla/OwningNonNull.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
#include "mozilla/TimeStamp.h"
|
2018-06-13 20:43:48 +03:00
|
|
|
#include "mozilla/webgpu/InstanceProvider.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
#include "nsWrapperCacheInlines.h"
|
2019-01-02 16:05:23 +03:00
|
|
|
#include "mozilla/dom/Document.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
#include "mozilla/dom/EventTarget.h"
|
|
|
|
#include "mozilla/dom/WindowBinding.h"
|
|
|
|
#include "Units.h"
|
|
|
|
#include "nsComponentManagerUtils.h"
|
|
|
|
#include "nsSize.h"
|
|
|
|
#include "nsCheapSets.h"
|
|
|
|
#include "mozilla/dom/ImageBitmapSource.h"
|
|
|
|
#include "mozilla/UniquePtr.h"
|
2018-02-12 04:14:49 +03:00
|
|
|
#include "nsRefreshDriver.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
class nsIArray;
|
|
|
|
class nsIBaseWindow;
|
|
|
|
class nsIContent;
|
|
|
|
class nsICSSDeclaration;
|
|
|
|
class nsIDocShellTreeOwner;
|
2018-07-25 02:47:40 +03:00
|
|
|
class nsIDOMWindowUtils;
|
2018-07-14 01:42:07 +03:00
|
|
|
class nsDOMOfflineResourceList;
|
2017-11-15 19:30:13 +03:00
|
|
|
class nsIScrollableFrame;
|
|
|
|
class nsIControllers;
|
|
|
|
class nsIScriptContext;
|
|
|
|
class nsIScriptTimeoutHandler;
|
|
|
|
class nsITabChild;
|
|
|
|
class nsITimeoutHandler;
|
|
|
|
class nsIWebBrowserChrome;
|
|
|
|
class mozIDOMWindowProxy;
|
|
|
|
|
|
|
|
class nsDOMWindowList;
|
|
|
|
class nsScreen;
|
|
|
|
class nsHistory;
|
|
|
|
class nsGlobalWindowObserver;
|
2017-11-15 19:33:29 +03:00
|
|
|
class nsGlobalWindowOuter;
|
2017-11-15 19:30:13 +03:00
|
|
|
class nsDOMWindowUtils;
|
|
|
|
class nsIIdleService;
|
|
|
|
struct nsRect;
|
|
|
|
|
|
|
|
class nsWindowSizes;
|
|
|
|
|
|
|
|
class IdleRequestExecutor;
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
class DialogValueHolder;
|
|
|
|
|
2018-02-12 04:14:49 +03:00
|
|
|
class PromiseDocumentFlushedResolver;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
namespace mozilla {
|
|
|
|
class AbstractThread;
|
|
|
|
namespace dom {
|
|
|
|
class BarProp;
|
2019-01-02 16:27:05 +03:00
|
|
|
class BrowsingContext;
|
2017-11-15 19:30:13 +03:00
|
|
|
struct ChannelPixelLayout;
|
2017-11-21 23:13:05 +03:00
|
|
|
class ClientSource;
|
2017-11-15 19:30:13 +03:00
|
|
|
class Console;
|
|
|
|
class Crypto;
|
|
|
|
class CustomElementRegistry;
|
|
|
|
class DocGroup;
|
|
|
|
class External;
|
|
|
|
class Function;
|
|
|
|
class Gamepad;
|
|
|
|
enum class ImageBitmapFormat : uint8_t;
|
|
|
|
class IdleRequest;
|
|
|
|
class IdleRequestCallback;
|
|
|
|
class IncrementalRunnable;
|
2018-03-22 06:18:51 +03:00
|
|
|
class InstallTriggerImpl;
|
2017-11-15 19:30:13 +03:00
|
|
|
class IntlUtils;
|
|
|
|
class Location;
|
|
|
|
class MediaQueryList;
|
|
|
|
class OwningExternalOrWindowProxy;
|
|
|
|
class Promise;
|
|
|
|
class PostMessageEvent;
|
|
|
|
struct RequestInit;
|
|
|
|
class RequestOrUSVString;
|
2018-11-20 02:18:21 +03:00
|
|
|
class SharedWorker;
|
2017-11-15 19:30:13 +03:00
|
|
|
class Selection;
|
|
|
|
class SpeechSynthesis;
|
|
|
|
class TabGroup;
|
|
|
|
class Timeout;
|
|
|
|
class U2F;
|
2018-08-20 23:28:42 +03:00
|
|
|
class VisualViewport;
|
2017-11-15 19:30:13 +03:00
|
|
|
class VRDisplay;
|
|
|
|
enum class VRDisplayEventReason : uint8_t;
|
|
|
|
class VREventObserver;
|
|
|
|
class WakeLock;
|
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
class WindowOrientationObserver;
|
|
|
|
#endif
|
2018-10-29 18:26:30 +03:00
|
|
|
struct WindowPostMessageOptions;
|
2017-11-15 19:30:13 +03:00
|
|
|
class Worklet;
|
|
|
|
namespace cache {
|
|
|
|
class CacheStorage;
|
|
|
|
} // namespace cache
|
|
|
|
class IDBFactory;
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
extern already_AddRefed<nsIScriptTimeoutHandler> NS_CreateJSTimeoutHandler(
|
|
|
|
JSContext* aCx, nsGlobalWindowInner* aWindow,
|
|
|
|
mozilla::dom::Function& aFunction,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aArguments,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
extern already_AddRefed<nsIScriptTimeoutHandler> NS_CreateJSTimeoutHandler(
|
|
|
|
JSContext* aCx, nsGlobalWindowInner* aWindow, const nsAString& aExpression,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
extern const js::Class OuterWindowProxyClass;
|
|
|
|
|
|
|
|
//*****************************************************************************
|
2017-11-22 00:41:53 +03:00
|
|
|
// nsGlobalWindowInner: Global Object for Scripting
|
2017-11-15 19:30:13 +03:00
|
|
|
//*****************************************************************************
|
2017-11-22 00:41:53 +03:00
|
|
|
|
|
|
|
// nsGlobalWindowInner inherits PRCList for maintaining a list of all inner
|
|
|
|
// windows still in memory for any given outer window. This list is 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
|
2017-11-15 19:30:13 +03:00
|
|
|
// side effect of inheriting PRCList).
|
|
|
|
|
2018-03-02 18:30:03 +03:00
|
|
|
class nsGlobalWindowInner final : public mozilla::dom::EventTarget,
|
|
|
|
public nsPIDOMWindowInner,
|
|
|
|
private nsIDOMWindow
|
|
|
|
// NOTE: This interface is private, as it's only
|
|
|
|
// implemented on chrome windows.
|
|
|
|
,
|
|
|
|
private nsIDOMChromeWindow,
|
|
|
|
public nsIScriptGlobalObject,
|
|
|
|
public nsIScriptObjectPrincipal,
|
|
|
|
public nsSupportsWeakReference,
|
|
|
|
public nsIInterfaceRequestor,
|
|
|
|
public PRCListStr,
|
|
|
|
public nsAPostRefreshObserver,
|
2018-06-13 20:43:48 +03:00
|
|
|
public mozilla::webgpu::InstanceProvider {
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
2019-01-02 16:29:18 +03:00
|
|
|
typedef mozilla::dom::BrowsingContext RemoteProxy;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
typedef mozilla::TimeStamp TimeStamp;
|
|
|
|
typedef mozilla::TimeDuration TimeDuration;
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
typedef nsDataHashtable<nsUint64HashKey, nsGlobalWindowInner*>
|
|
|
|
InnerWindowByIdTable;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
static void AssertIsOnMainThread()
|
|
|
|
#ifdef DEBUG
|
|
|
|
;
|
|
|
|
#else
|
|
|
|
{
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
static nsGlobalWindowInner* Cast(nsPIDOMWindowInner* aPIWin) {
|
2017-11-15 19:34:04 +03:00
|
|
|
return static_cast<nsGlobalWindowInner*>(aPIWin);
|
2017-11-15 19:33:29 +03:00
|
|
|
}
|
|
|
|
static const nsGlobalWindowInner* Cast(const nsPIDOMWindowInner* aPIWin) {
|
2017-11-15 19:34:04 +03:00
|
|
|
return static_cast<const nsGlobalWindowInner*>(aPIWin);
|
2017-11-15 19:33:29 +03:00
|
|
|
}
|
|
|
|
static nsGlobalWindowInner* Cast(mozIDOMWindow* aWin) {
|
|
|
|
return Cast(nsPIDOMWindowInner::From(aWin));
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsGlobalWindowInner* GetInnerWindowWithId(uint64_t aInnerWindowID) {
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
|
|
|
if (!sInnerWindowsById) {
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
nsGlobalWindowInner* innerWindow = sInnerWindowsById->Get(aInnerWindowID);
|
|
|
|
return innerWindow;
|
|
|
|
}
|
|
|
|
|
|
|
|
static InnerWindowByIdTable* GetWindowsTable() {
|
|
|
|
AssertIsOnMainThread();
|
|
|
|
|
|
|
|
return sInnerWindowsById;
|
|
|
|
}
|
|
|
|
|
|
|
|
static nsGlobalWindowInner* FromSupports(nsISupports* supports) {
|
|
|
|
// Make sure this matches the casts we do in QueryInterface().
|
|
|
|
return (nsGlobalWindowInner*)(mozilla::dom::EventTarget*)supports;
|
|
|
|
}
|
|
|
|
|
|
|
|
static already_AddRefed<nsGlobalWindowInner> Create(
|
|
|
|
nsGlobalWindowOuter* aOuter, bool aIsChrome);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// nsISupports
|
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
|
|
|
|
|
|
|
// nsWrapperCache
|
|
|
|
virtual JSObject* WrapObject(JSContext* cx,
|
|
|
|
JS::Handle<JSObject*> aGivenProto) override {
|
2018-03-02 20:27:48 +03:00
|
|
|
return GetWrapper();
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// nsIGlobalJSObjectHolder
|
|
|
|
virtual JSObject* GetGlobalJSObject() override;
|
|
|
|
|
|
|
|
// nsIScriptGlobalObject
|
|
|
|
JSObject* FastGetGlobalJSObject() const { return GetWrapperPreserveColor(); }
|
|
|
|
|
|
|
|
void TraceGlobalJSObject(JSTracer* aTrc);
|
|
|
|
|
|
|
|
virtual nsresult EnsureScriptEnvironment() override;
|
|
|
|
|
|
|
|
virtual nsIScriptContext* GetScriptContext() override;
|
|
|
|
|
|
|
|
virtual bool IsBlackForCC(bool aTracingNeeded = true) override;
|
|
|
|
|
|
|
|
// nsIScriptObjectPrincipal
|
|
|
|
virtual nsIPrincipal* GetPrincipal() override;
|
|
|
|
|
|
|
|
// nsIDOMWindow
|
|
|
|
NS_DECL_NSIDOMWINDOW
|
|
|
|
|
|
|
|
// nsIDOMChromeWindow (only implemented on chrome windows)
|
|
|
|
NS_DECL_NSIDOMCHROMEWINDOW
|
|
|
|
|
|
|
|
void CaptureEvents();
|
|
|
|
void ReleaseEvents();
|
|
|
|
void Dump(const nsAString& aStr);
|
|
|
|
void SetResizable(bool aResizable) const;
|
|
|
|
|
|
|
|
virtual mozilla::EventListenerManager* GetExistingListenerManager()
|
|
|
|
const override;
|
|
|
|
|
|
|
|
virtual mozilla::EventListenerManager* GetOrCreateListenerManager() override;
|
|
|
|
|
2018-04-05 20:42:42 +03:00
|
|
|
bool ComputeDefaultWantsUntrusted(mozilla::ErrorResult& aRv) final;
|
|
|
|
|
2019-01-02 16:26:56 +03:00
|
|
|
virtual nsPIDOMWindowOuter* GetOwnerGlobalForBindingsInternal() override;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
virtual nsIGlobalObject* GetOwnerGlobal() const override;
|
|
|
|
|
2018-04-05 20:42:41 +03:00
|
|
|
EventTarget* GetTargetForDOMEvent() override;
|
2018-05-03 06:20:00 +03:00
|
|
|
|
2018-04-05 20:42:41 +03:00
|
|
|
using mozilla::dom::EventTarget::DispatchEvent;
|
|
|
|
bool DispatchEvent(mozilla::dom::Event& aEvent,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aRv) override;
|
|
|
|
|
2018-04-05 20:42:41 +03:00
|
|
|
void GetEventTargetParent(mozilla::EventChainPreVisitor& aVisitor) override;
|
|
|
|
|
2018-04-05 20:42:41 +03:00
|
|
|
nsresult PostHandleEvent(mozilla::EventChainPostVisitor& aVisitor) override;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
void Suspend();
|
|
|
|
void Resume();
|
|
|
|
virtual bool IsSuspended() const override;
|
2018-08-01 00:27:02 +03:00
|
|
|
|
|
|
|
// Calling Freeze() on a window will automatically Suspend() it. In
|
|
|
|
// addition, the window and its children are further treated as no longer
|
|
|
|
// suitable for interaction with the user. For example, it may be marked
|
|
|
|
// non-visible, cannot be focused, etc. All worker threads are also frozen
|
|
|
|
// bringing them to a complete stop. A window can have Freeze() called
|
|
|
|
// multiple times and will only thaw after a matching number of Thaw()
|
|
|
|
// calls.
|
2017-11-15 19:30:13 +03:00
|
|
|
void Freeze();
|
|
|
|
void Thaw();
|
|
|
|
virtual bool IsFrozen() const override;
|
|
|
|
void SyncStateFromParentWindow();
|
|
|
|
|
2018-01-12 04:46:08 +03:00
|
|
|
mozilla::Maybe<mozilla::dom::ClientInfo> GetClientInfo() const override;
|
2017-12-08 22:46:42 +03:00
|
|
|
mozilla::Maybe<mozilla::dom::ClientState> GetClientState() const;
|
2018-01-12 04:46:08 +03:00
|
|
|
mozilla::Maybe<mozilla::dom::ServiceWorkerDescriptor> GetController()
|
|
|
|
const override;
|
2017-11-21 23:13:05 +03:00
|
|
|
|
2018-01-31 20:10:26 +03:00
|
|
|
virtual RefPtr<mozilla::dom::ServiceWorker> GetOrCreateServiceWorker(
|
|
|
|
const mozilla::dom::ServiceWorkerDescriptor& aDescriptor) override;
|
|
|
|
|
2018-07-02 17:44:18 +03:00
|
|
|
RefPtr<mozilla::dom::ServiceWorkerRegistration> GetServiceWorkerRegistration(
|
|
|
|
const mozilla::dom::ServiceWorkerRegistrationDescriptor& aDescriptor)
|
|
|
|
const override;
|
|
|
|
|
2018-03-03 00:02:49 +03:00
|
|
|
RefPtr<mozilla::dom::ServiceWorkerRegistration>
|
|
|
|
GetOrCreateServiceWorkerRegistration(
|
|
|
|
const mozilla::dom::ServiceWorkerRegistrationDescriptor& aDescriptor)
|
|
|
|
override;
|
|
|
|
|
2017-12-19 18:04:48 +03:00
|
|
|
void NoteCalledRegisterForServiceWorkerScope(const nsACString& aScope);
|
|
|
|
|
2018-06-23 20:11:47 +03:00
|
|
|
void NoteDOMContentLoaded();
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
virtual nsresult FireDelayedDOMEvents() override;
|
|
|
|
|
|
|
|
virtual void MaybeUpdateTouchState() override;
|
|
|
|
|
|
|
|
// Inner windows only.
|
2018-05-31 12:28:50 +03:00
|
|
|
void RefreshRealmPrincipal();
|
2017-11-15 19:30:13 +03:00
|
|
|
|
2018-09-12 18:51:30 +03:00
|
|
|
// For accessing protected field mFullscreen
|
2017-11-15 19:30:13 +03:00
|
|
|
friend class FullscreenTransitionTask;
|
|
|
|
|
|
|
|
// Inner windows only.
|
|
|
|
virtual void SetHasGamepadEventListener(bool aHasGamepad = true) override;
|
|
|
|
void NotifyVREventListenerAdded();
|
|
|
|
bool HasUsedVR() const;
|
|
|
|
bool IsVRContentDetected() const;
|
|
|
|
bool IsVRContentPresenting() const;
|
|
|
|
|
|
|
|
using EventTarget::EventListenerAdded;
|
|
|
|
virtual void EventListenerAdded(nsAtom* aType) override;
|
|
|
|
using EventTarget::EventListenerRemoved;
|
|
|
|
virtual void EventListenerRemoved(nsAtom* aType) override;
|
|
|
|
|
|
|
|
// nsIInterfaceRequestor
|
|
|
|
NS_DECL_NSIINTERFACEREQUESTOR
|
|
|
|
|
|
|
|
// WebIDL interface.
|
2018-12-18 23:06:19 +03:00
|
|
|
already_AddRefed<nsPIDOMWindowOuter> IndexedGetter(uint32_t aIndex);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
static bool IsPrivilegedChromeWindow(JSContext* /* unused */, JSObject* aObj);
|
|
|
|
|
2018-01-12 22:09:30 +03:00
|
|
|
static bool OfflineCacheAllowedForContext(JSContext* /* unused */,
|
|
|
|
JSObject* aObj);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
static bool IsRequestIdleCallbackEnabled(JSContext* aCx,
|
|
|
|
JSObject* /* unused */);
|
|
|
|
|
|
|
|
static bool IsWindowPrintEnabled(JSContext* /* unused */,
|
|
|
|
JSObject* /* unused */);
|
|
|
|
|
2018-02-04 15:10:10 +03:00
|
|
|
static bool RegisterProtocolHandlerAllowedForContext(JSContext* /* unused */,
|
|
|
|
JSObject* aObj);
|
|
|
|
|
2017-07-24 11:07:00 +03:00
|
|
|
static bool DeviceSensorsEnabled(JSContext* /* unused */, JSObject* aObj);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
bool DoResolve(JSContext* aCx, JS::Handle<JSObject*> aObj,
|
|
|
|
JS::Handle<jsid> aId,
|
|
|
|
JS::MutableHandle<JS::PropertyDescriptor> aDesc);
|
|
|
|
// The return value is whether DoResolve might end up resolving the given id.
|
|
|
|
// If in doubt, return true.
|
|
|
|
static bool MayResolve(jsid aId);
|
|
|
|
|
|
|
|
void GetOwnPropertyNames(JSContext* aCx, JS::AutoIdVector& aNames,
|
|
|
|
bool aEnumerableOnly, mozilla::ErrorResult& aRv);
|
|
|
|
|
|
|
|
nsPIDOMWindowOuter* GetScriptableTop() override;
|
|
|
|
inline nsGlobalWindowOuter* GetTopInternal();
|
|
|
|
|
|
|
|
inline nsGlobalWindowOuter* GetScriptableTopInternal();
|
|
|
|
|
2019-01-02 16:27:05 +03:00
|
|
|
already_AddRefed<mozilla::dom::BrowsingContext> GetChildWindow(
|
|
|
|
const nsAString& aName);
|
2017-11-15 19:30:13 +03: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.
|
|
|
|
//
|
2017-11-15 19:34:13 +03:00
|
|
|
// nsGlobalWindowOuter::ShouldPromptToBlockDialogs is implemented in terms of
|
|
|
|
// nsGlobalWindowInner::DialogsAreBeingAbused, and will get the scriptable top
|
2017-11-15 19:30:13 +03:00
|
|
|
// inner window automatically. Inner windows only.
|
|
|
|
bool DialogsAreBeingAbused();
|
|
|
|
|
|
|
|
nsIScriptContext* GetContextInternal();
|
|
|
|
|
2017-11-15 19:34:47 +03:00
|
|
|
nsGlobalWindowOuter* GetOuterWindowInternal() const;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
bool IsChromeWindow() const { return mIsChrome; }
|
|
|
|
|
|
|
|
// GetScrollFrame does not flush. Callers should do it themselves as needed,
|
|
|
|
// depending on which info they actually want off the scrollable frame.
|
|
|
|
nsIScrollableFrame* GetScrollFrame();
|
|
|
|
|
|
|
|
nsresult Observe(nsISupports* aSubject, const char* aTopic,
|
|
|
|
const char16_t* aData);
|
|
|
|
|
|
|
|
void ObserveStorageNotification(mozilla::dom::StorageEvent* aEvent,
|
|
|
|
const char16_t* aStorageType,
|
|
|
|
bool aPrivateBrowsing);
|
|
|
|
|
|
|
|
static void Init();
|
|
|
|
static void ShutDown();
|
|
|
|
static bool IsCallerChrome();
|
|
|
|
|
|
|
|
void CleanupCachedXBLHandlers();
|
|
|
|
|
|
|
|
friend class WindowStateHolder;
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
NS_DECL_CYCLE_COLLECTION_SKIPPABLE_SCRIPT_HOLDER_CLASS_AMBIGUOUS(
|
2018-04-20 07:49:30 +03:00
|
|
|
nsGlobalWindowInner, mozilla::dom::EventTarget)
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
// Call Unlink on this window. This may cause bad things to happen, so use
|
|
|
|
// with caution.
|
|
|
|
void RiskyUnlink();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
virtual JSObject* GetCachedXBLPrototypeHandler(
|
|
|
|
nsXBLPrototypeHandler* aKey) override;
|
|
|
|
|
|
|
|
virtual void CacheXBLPrototypeHandler(
|
|
|
|
nsXBLPrototypeHandler* aKey, JS::Handle<JSObject*> aHandler) override;
|
|
|
|
|
|
|
|
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;
|
|
|
|
|
|
|
|
// Inner windows only.
|
|
|
|
virtual void EnableDeviceSensor(uint32_t aType) override;
|
|
|
|
virtual void DisableDeviceSensor(uint32_t aType) override;
|
|
|
|
|
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
virtual void EnableOrientationChangeListener() override;
|
|
|
|
virtual void DisableOrientationChangeListener() override;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void AddSizeOfIncludingThis(nsWindowSizes& aWindowSizes) const;
|
|
|
|
|
|
|
|
enum SlowScriptResponse {
|
|
|
|
ContinueSlowScript = 0,
|
|
|
|
ContinueSlowScriptAndKeepNotifying,
|
|
|
|
AlwaysContinueSlowScript,
|
|
|
|
KillSlowScript,
|
|
|
|
KillScriptGlobal
|
|
|
|
};
|
|
|
|
SlowScriptResponse ShowSlowScriptDialog(const nsString& aAddonId);
|
|
|
|
|
|
|
|
// Inner windows only.
|
|
|
|
void AddGamepad(uint32_t aIndex, mozilla::dom::Gamepad* aGamepad);
|
|
|
|
void RemoveGamepad(uint32_t aIndex);
|
|
|
|
void GetGamepads(nsTArray<RefPtr<mozilla::dom::Gamepad>>& aGamepads);
|
|
|
|
already_AddRefed<mozilla::dom::Gamepad> GetGamepad(uint32_t aIndex);
|
|
|
|
void SetHasSeenGamepadInput(bool aHasSeen);
|
|
|
|
bool HasSeenGamepadInput();
|
|
|
|
void SyncGamepadState();
|
|
|
|
void StopGamepadHaptics();
|
|
|
|
|
|
|
|
// Inner windows only.
|
|
|
|
// Enable/disable updates for gamepad input.
|
|
|
|
void EnableGamepadUpdates();
|
|
|
|
void DisableGamepadUpdates();
|
|
|
|
|
|
|
|
// Inner windows only.
|
|
|
|
// Enable/disable updates for VR
|
|
|
|
void EnableVRUpdates();
|
|
|
|
void DisableVRUpdates();
|
|
|
|
// Reset telemetry data when switching windows.
|
|
|
|
// aUpdate, true for accumulating the result to the histogram.
|
|
|
|
// false for only resetting the timestamp.
|
|
|
|
void ResetVRTelemetry(bool aUpdate);
|
|
|
|
|
2018-10-29 01:49:15 +03:00
|
|
|
void StartVRActivity();
|
|
|
|
void StopVRActivity();
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// Update the VR displays for this window
|
|
|
|
bool UpdateVRDisplays(nsTArray<RefPtr<mozilla::dom::VRDisplay>>& aDisplays);
|
|
|
|
|
|
|
|
// Inner windows only.
|
|
|
|
// Called to inform that the set of active VR displays has changed.
|
|
|
|
void NotifyActiveVRDisplaysChanged();
|
2018-08-08 02:09:42 +03:00
|
|
|
void NotifyPresentationGenerationChanged(uint32_t aDisplayID);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
void DispatchVRDisplayActivate(uint32_t aDisplayID,
|
|
|
|
mozilla::dom::VRDisplayEventReason aReason);
|
|
|
|
void DispatchVRDisplayDeactivate(uint32_t aDisplayID,
|
|
|
|
mozilla::dom::VRDisplayEventReason aReason);
|
|
|
|
void DispatchVRDisplayConnect(uint32_t aDisplayID);
|
|
|
|
void DispatchVRDisplayDisconnect(uint32_t aDisplayID);
|
|
|
|
void DispatchVRDisplayPresentChange(uint32_t aDisplayID);
|
|
|
|
|
|
|
|
#define EVENT(name_, id_, type_, struct_) \
|
|
|
|
mozilla::dom::EventHandlerNonNull* GetOn##name_() { \
|
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
2018-07-25 01:15:19 +03:00
|
|
|
return elm ? elm->GetEventHandler(nsGkAtoms::on##name_) : nullptr; \
|
2017-11-15 19:30:13 +03:00
|
|
|
} \
|
|
|
|
void SetOn##name_(mozilla::dom::EventHandlerNonNull* handler) { \
|
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
|
|
|
if (elm) { \
|
2018-07-25 01:15:19 +03:00
|
|
|
elm->SetEventHandler(nsGkAtoms::on##name_, handler); \
|
2017-11-15 19:30:13 +03:00
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define ERROR_EVENT(name_, id_, type_, struct_) \
|
|
|
|
mozilla::dom::OnErrorEventHandlerNonNull* GetOn##name_() { \
|
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
|
|
|
return elm ? elm->GetOnErrorEventHandler() : nullptr; \
|
|
|
|
} \
|
|
|
|
void SetOn##name_(mozilla::dom::OnErrorEventHandlerNonNull* handler) { \
|
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
|
|
|
if (elm) { \
|
|
|
|
elm->SetEventHandler(handler); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define BEFOREUNLOAD_EVENT(name_, id_, type_, struct_) \
|
|
|
|
mozilla::dom::OnBeforeUnloadEventHandlerNonNull* GetOn##name_() { \
|
|
|
|
mozilla::EventListenerManager* elm = GetExistingListenerManager(); \
|
|
|
|
return elm ? elm->GetOnBeforeUnloadEventHandler() : nullptr; \
|
|
|
|
} \
|
|
|
|
void SetOn##name_( \
|
|
|
|
mozilla::dom::OnBeforeUnloadEventHandlerNonNull* handler) { \
|
|
|
|
mozilla::EventListenerManager* elm = GetOrCreateListenerManager(); \
|
|
|
|
if (elm) { \
|
|
|
|
elm->SetEventHandler(handler); \
|
|
|
|
} \
|
|
|
|
}
|
|
|
|
#define WINDOW_ONLY_EVENT EVENT
|
|
|
|
#define TOUCH_EVENT EVENT
|
|
|
|
#include "mozilla/EventNameList.h"
|
|
|
|
#undef TOUCH_EVENT
|
|
|
|
#undef WINDOW_ONLY_EVENT
|
|
|
|
#undef BEFOREUNLOAD_EVENT
|
|
|
|
#undef ERROR_EVENT
|
|
|
|
#undef EVENT
|
|
|
|
|
|
|
|
nsISupports* GetParentObject() { return nullptr; }
|
|
|
|
|
|
|
|
static JSObject* CreateNamedPropertiesObject(JSContext* aCx,
|
|
|
|
JS::Handle<JSObject*> aProto);
|
|
|
|
|
2019-01-02 16:29:18 +03:00
|
|
|
mozilla::dom::BrowsingContext* Window();
|
|
|
|
mozilla::dom::BrowsingContext* Self() { return Window(); }
|
2019-01-02 16:05:23 +03:00
|
|
|
Document* GetDocument() { return GetDoc(); }
|
2017-11-15 19:30:13 +03:00
|
|
|
void GetName(nsAString& aName, mozilla::ErrorResult& aError);
|
|
|
|
void SetName(const nsAString& aName, mozilla::ErrorResult& aError);
|
2019-01-02 16:29:18 +03:00
|
|
|
mozilla::dom::Location* Location() override;
|
2017-11-15 19:30:13 +03:00
|
|
|
nsHistory* GetHistory(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::CustomElementRegistry* CustomElements() override;
|
|
|
|
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);
|
|
|
|
void GetStatus(nsAString& aStatus, mozilla::ErrorResult& aError);
|
|
|
|
void SetStatus(const nsAString& aStatus, mozilla::ErrorResult& aError);
|
2019-01-02 16:29:18 +03:00
|
|
|
void Close(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
2017-11-15 19:30:13 +03:00
|
|
|
nsresult Close() override;
|
|
|
|
bool GetClosed(mozilla::ErrorResult& aError);
|
|
|
|
void Stop(mozilla::ErrorResult& aError);
|
|
|
|
void Focus(mozilla::ErrorResult& aError);
|
|
|
|
nsresult Focus() override;
|
|
|
|
void Blur(mozilla::ErrorResult& aError);
|
2018-05-25 06:32:19 +03:00
|
|
|
nsDOMWindowList* GetFrames() final;
|
2019-01-02 16:27:05 +03:00
|
|
|
mozilla::dom::BrowsingContext* GetFrames(mozilla::ErrorResult& aError);
|
2018-12-18 23:06:19 +03:00
|
|
|
uint32_t Length();
|
2019-01-02 16:26:56 +03:00
|
|
|
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> GetTop(
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
protected:
|
2017-11-15 19:33:29 +03:00
|
|
|
explicit nsGlobalWindowInner(nsGlobalWindowOuter* aOuterWindow);
|
2017-11-15 19:30:13 +03:00
|
|
|
// Initializes the mWasOffline member variable
|
|
|
|
void InitWasOffline();
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
nsPIDOMWindowOuter* GetOpenerWindow(mozilla::ErrorResult& aError);
|
|
|
|
void GetOpener(JSContext* aCx, JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOpener(JSContext* aCx, JS::Handle<JS::Value> aOpener,
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-04-04 15:57:17 +03:00
|
|
|
void GetEvent(JSContext* aCx, JS::MutableHandle<JS::Value> aRetval);
|
2019-01-02 16:26:56 +03:00
|
|
|
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> GetParent(
|
|
|
|
mozilla::ErrorResult& aError);
|
2017-11-15 19:30:13 +03:00
|
|
|
nsPIDOMWindowOuter* GetScriptableParent() override;
|
|
|
|
mozilla::dom::Element* GetFrameElement(nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-04-27 06:37:33 +03:00
|
|
|
mozilla::dom::Element* GetFrameElement() override;
|
2019-01-02 16:26:56 +03:00
|
|
|
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> Open(
|
|
|
|
const nsAString& aUrl, const nsAString& aName, const nsAString& aOptions,
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-07-14 01:42:07 +03:00
|
|
|
nsDOMOfflineResourceList* GetApplicationCache(mozilla::ErrorResult& aError);
|
|
|
|
nsDOMOfflineResourceList* GetApplicationCache() override;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
int16_t Orientation(mozilla::dom::CallerType aCallerType) const;
|
|
|
|
#endif
|
|
|
|
|
2018-02-22 10:49:51 +03:00
|
|
|
already_AddRefed<mozilla::dom::Console> GetConsole(JSContext* aCx,
|
|
|
|
mozilla::ErrorResult& aRv);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
// https://w3c.github.io/webappsec-secure-contexts/#dom-window-issecurecontext
|
|
|
|
bool IsSecureContext() const;
|
|
|
|
|
|
|
|
void GetSidebar(mozilla::dom::OwningExternalOrWindowProxy& aResult,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
already_AddRefed<mozilla::dom::External> GetExternal(
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
|
|
|
|
mozilla::dom::Worklet* GetPaintWorklet(mozilla::ErrorResult& aRv);
|
|
|
|
|
|
|
|
void GetRegionalPrefsLocales(nsTArray<nsString>& aLocales);
|
|
|
|
|
|
|
|
mozilla::dom::IntlUtils* GetIntlUtils(mozilla::ErrorResult& aRv);
|
|
|
|
|
2018-11-20 02:18:21 +03:00
|
|
|
void StoreSharedWorker(mozilla::dom::SharedWorker* aSharedWorker);
|
|
|
|
|
|
|
|
void ForgetSharedWorker(mozilla::dom::SharedWorker* aSharedWorker);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
void Alert(nsIPrincipal& aSubjectPrincipal, mozilla::ErrorResult& aError);
|
|
|
|
void Alert(const nsAString& aMessage, nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
bool Confirm(const nsAString& aMessage, nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void Prompt(const nsAString& aMessage, const nsAString& aInitial,
|
|
|
|
nsAString& aReturn, nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
already_AddRefed<mozilla::dom::cache::CacheStorage> GetCaches(
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
already_AddRefed<mozilla::dom::Promise> Fetch(
|
|
|
|
const mozilla::dom::RequestOrUSVString& aInput,
|
|
|
|
const mozilla::dom::RequestInit& aInit,
|
|
|
|
mozilla::dom::CallerType aCallerType, mozilla::ErrorResult& aRv);
|
|
|
|
void Print(mozilla::ErrorResult& aError);
|
|
|
|
void PostMessageMoz(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
|
|
const nsAString& aTargetOrigin,
|
|
|
|
const mozilla::dom::Sequence<JSObject*>& aTransfer,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-10-29 18:26:30 +03:00
|
|
|
void PostMessageMoz(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
|
|
const mozilla::dom::WindowPostMessageOptions& aOptions,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
2017-11-15 19:30:13 +03:00
|
|
|
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,
|
|
|
|
int32_t aTimeout,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& /* unused */,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void ClearTimeout(int32_t aHandle);
|
|
|
|
int32_t SetInterval(JSContext* aCx, mozilla::dom::Function& aFunction,
|
2018-05-03 06:20:00 +03:00
|
|
|
const int32_t aTimeout,
|
2017-11-15 19:30:13 +03:00
|
|
|
const mozilla::dom::Sequence<JS::Value>& aArguments,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t SetInterval(JSContext* aCx, const nsAString& aHandler,
|
2018-05-03 06:20:00 +03:00
|
|
|
const int32_t aTimeout,
|
2017-11-15 19:30:13 +03:00
|
|
|
const mozilla::dom::Sequence<JS::Value>& /* unused */,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void ClearInterval(int32_t aHandle);
|
|
|
|
void GetOrigin(nsAString& aOrigin);
|
|
|
|
void Atob(const nsAString& aAsciiBase64String, nsAString& aBinaryData,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void Btoa(const nsAString& aBinaryData, nsAString& aAsciiBase64String,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::Storage* GetSessionStorage(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::Storage* GetLocalStorage(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::Selection* GetSelection(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::IDBFactory* GetIndexedDB(mozilla::ErrorResult& aError);
|
|
|
|
already_AddRefed<nsICSSDeclaration> GetComputedStyle(
|
|
|
|
mozilla::dom::Element& aElt, const nsAString& aPseudoElt,
|
|
|
|
mozilla::ErrorResult& aError) override;
|
2018-08-20 23:28:42 +03:00
|
|
|
mozilla::dom::VisualViewport* VisualViewport();
|
2017-11-15 19:30:13 +03:00
|
|
|
already_AddRefed<mozilla::dom::MediaQueryList> MatchMedia(
|
|
|
|
const nsAString& aQuery, mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
nsScreen* GetScreen(mozilla::ErrorResult& aError);
|
|
|
|
void MoveTo(int32_t aXPos, int32_t aYPos,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void MoveBy(int32_t aXDif, int32_t aYDif,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void ResizeTo(int32_t aWidth, int32_t aHeight,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void ResizeBy(int32_t aWidthDif, int32_t aHeightDif,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
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);
|
|
|
|
void ScrollByLines(int32_t numLines,
|
|
|
|
const mozilla::dom::ScrollOptions& aOptions);
|
|
|
|
void ScrollByPages(int32_t numPages,
|
|
|
|
const mozilla::dom::ScrollOptions& aOptions);
|
|
|
|
void MozScrollSnap();
|
|
|
|
void GetInnerWidth(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetInnerWidth(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetInnerHeight(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetInnerHeight(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
double GetScrollX(mozilla::ErrorResult& aError);
|
|
|
|
double GetPageXOffset(mozilla::ErrorResult& aError) {
|
|
|
|
return GetScrollX(aError);
|
|
|
|
}
|
|
|
|
double GetScrollY(mozilla::ErrorResult& aError);
|
|
|
|
double GetPageYOffset(mozilla::ErrorResult& aError) {
|
|
|
|
return GetScrollY(aError);
|
|
|
|
}
|
2018-10-17 05:20:15 +03:00
|
|
|
|
|
|
|
int32_t GetScreenLeft(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError) {
|
|
|
|
return GetScreenX(aCallerType, aError);
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t GetScreenTop(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError) {
|
|
|
|
return GetScreenY(aCallerType, aError);
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
void GetScreenX(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetScreenX(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetScreenY(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetScreenY(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetOuterWidth(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterWidth(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetOuterHeight(JSContext* aCx, JS::MutableHandle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterHeight(JSContext* aCx, JS::Handle<JS::Value> aValue,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t RequestAnimationFrame(mozilla::dom::FrameRequestCallback& aCallback,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void CancelAnimationFrame(int32_t aHandle, mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
uint32_t RequestIdleCallback(JSContext* aCx,
|
|
|
|
mozilla::dom::IdleRequestCallback& aCallback,
|
|
|
|
const mozilla::dom::IdleRequestOptions& aOptions,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void CancelIdleCallback(uint32_t aHandle);
|
|
|
|
|
|
|
|
#ifdef MOZ_WEBSPEECH
|
|
|
|
mozilla::dom::SpeechSynthesis* GetSpeechSynthesis(
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
bool HasActiveSpeechSynthesis();
|
|
|
|
#endif
|
|
|
|
already_AddRefed<nsICSSDeclaration> GetDefaultComputedStyle(
|
|
|
|
mozilla::dom::Element& aElt, const nsAString& aPseudoElt,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SizeToContent(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::Crypto* GetCrypto(mozilla::ErrorResult& aError);
|
|
|
|
mozilla::dom::U2F* GetU2f(mozilla::ErrorResult& aError);
|
|
|
|
nsIControllers* GetControllers(mozilla::ErrorResult& aError);
|
|
|
|
nsresult GetControllers(nsIControllers** aControllers) override;
|
|
|
|
mozilla::dom::Element* GetRealFrameElement(mozilla::ErrorResult& aError);
|
|
|
|
float GetMozInnerScreenX(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
float GetMozInnerScreenY(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
double GetDevicePixelRatio(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScrollMinX(mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScrollMinY(mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScrollMaxX(mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScrollMaxY(mozilla::ErrorResult& aError);
|
|
|
|
bool GetFullScreen(mozilla::ErrorResult& aError);
|
|
|
|
bool GetFullScreen() override;
|
2018-09-12 18:51:30 +03:00
|
|
|
void SetFullScreen(bool aFullscreen, mozilla::ErrorResult& aError);
|
2017-11-15 19:30:13 +03:00
|
|
|
bool Find(const nsAString& aString, bool aCaseSensitive, bool aBackwards,
|
|
|
|
bool aWrapAround, bool aWholeWord, bool aSearchInFrames,
|
|
|
|
bool aShowDialog, mozilla::ErrorResult& aError);
|
|
|
|
uint64_t GetMozPaintCount(mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
bool ShouldResistFingerprinting();
|
|
|
|
|
2019-02-23 00:27:44 +03:00
|
|
|
bool DidFireDocElemInserted() const { return mDidFireDocElemInserted; }
|
|
|
|
void SetDidFireDocElemInserted() { mDidFireDocElemInserted = true; }
|
|
|
|
|
2019-01-02 16:26:56 +03:00
|
|
|
mozilla::dom::Nullable<mozilla::dom::WindowProxyHolder> OpenDialog(
|
2017-11-15 19:30:13 +03:00
|
|
|
JSContext* aCx, const nsAString& aUrl, const nsAString& aName,
|
|
|
|
const nsAString& aOptions,
|
|
|
|
const mozilla::dom::Sequence<JS::Value>& aExtraArgument,
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-05-08 20:52:42 +03:00
|
|
|
void UpdateCommands(const nsAString& anAction, mozilla::dom::Selection* aSel,
|
|
|
|
int16_t aReason);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
void GetContent(JSContext* aCx, JS::MutableHandle<JSObject*> aRetval,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
already_AddRefed<mozilla::dom::Promise> CreateImageBitmap(
|
|
|
|
JSContext* aCx, const mozilla::dom::ImageBitmapSource& aImage,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
|
|
|
|
already_AddRefed<mozilla::dom::Promise> CreateImageBitmap(
|
|
|
|
JSContext* aCx, const mozilla::dom::ImageBitmapSource& aImage,
|
|
|
|
int32_t aSx, int32_t aSy, int32_t aSw, int32_t aSh,
|
|
|
|
mozilla::ErrorResult& aRv);
|
|
|
|
|
|
|
|
// ChromeWindow bits. Do NOT call these unless your window is in
|
|
|
|
// fact chrome.
|
|
|
|
uint16_t WindowState();
|
|
|
|
bool IsFullyOccluded();
|
|
|
|
nsIBrowserDOMWindow* GetBrowserDOMWindow(mozilla::ErrorResult& aError);
|
|
|
|
void SetBrowserDOMWindow(nsIBrowserDOMWindow* aBrowserWindow,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetAttention(mozilla::ErrorResult& aError);
|
|
|
|
void GetAttentionWithCycleCount(int32_t aCycleCount,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetCursor(const nsAString& aCursor, mozilla::ErrorResult& aError);
|
|
|
|
void Maximize();
|
|
|
|
void Minimize();
|
|
|
|
void Restore();
|
|
|
|
void NotifyDefaultButtonLoaded(mozilla::dom::Element& aDefaultButton,
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-02-14 19:35:39 +03:00
|
|
|
mozilla::dom::ChromeMessageBroadcaster* MessageManager();
|
|
|
|
mozilla::dom::ChromeMessageBroadcaster* GetGroupMessageManager(
|
|
|
|
const nsAString& aGroup);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
2018-02-12 04:14:49 +03:00
|
|
|
already_AddRefed<mozilla::dom::Promise> PromiseDocumentFlushed(
|
|
|
|
mozilla::dom::PromiseDocumentFlushedCallback& aCallback,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
void DidRefresh() override;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
void GetDialogArgumentsOuter(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetDialogArguments(JSContext* aCx, JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetReturnValueOuter(JSContext* aCx,
|
|
|
|
JS::MutableHandle<JS::Value> aReturnValue,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void GetReturnValue(JSContext* aCx, JS::MutableHandle<JS::Value> aReturnValue,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetReturnValueOuter(JSContext* aCx, JS::Handle<JS::Value> aReturnValue,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetReturnValue(JSContext* aCx, JS::Handle<JS::Value> aReturnValue,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
2018-07-18 07:30:38 +03:00
|
|
|
void GetInterface(JSContext* aCx, JS::Handle<JS::Value> aIID,
|
2017-11-15 19:30:13 +03:00
|
|
|
JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
already_AddRefed<nsWindowRoot> GetWindowRoot(mozilla::ErrorResult& aError);
|
|
|
|
|
2017-12-19 18:04:47 +03:00
|
|
|
bool ShouldReportForServiceWorkerScope(const nsAString& aScope);
|
|
|
|
|
2018-06-20 18:57:50 +03:00
|
|
|
void PropagateClearSiteDataReload(const nsACString& aOrigin);
|
|
|
|
|
2018-03-22 06:18:51 +03:00
|
|
|
already_AddRefed<mozilla::dom::InstallTriggerImpl> GetInstallTrigger();
|
|
|
|
|
2018-07-25 02:47:40 +03:00
|
|
|
nsIDOMWindowUtils* GetWindowUtils(mozilla::ErrorResult& aRv);
|
|
|
|
|
2018-11-19 21:56:18 +03:00
|
|
|
bool HasOpenerForInitialContentBrowser();
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
void UpdateTopInnerWindow();
|
|
|
|
|
|
|
|
virtual bool IsInSyncOperation() override {
|
|
|
|
return GetExtantDoc() && GetExtantDoc()->IsInSyncOperation();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// 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);
|
|
|
|
|
|
|
|
// Implementation guts for our writable IDL attributes that are really
|
|
|
|
// supposed to be readonly replaceable.
|
2017-11-15 19:33:29 +03:00
|
|
|
typedef int32_t (nsGlobalWindowInner::*WindowCoordGetter)(
|
|
|
|
mozilla::dom::CallerType aCallerType, mozilla::ErrorResult&);
|
|
|
|
typedef void (nsGlobalWindowInner::*WindowCoordSetter)(
|
|
|
|
int32_t, mozilla::dom::CallerType aCallerType, mozilla::ErrorResult&);
|
2017-11-15 19:30:13 +03:00
|
|
|
void GetReplaceableWindowCoord(JSContext* aCx, WindowCoordGetter aGetter,
|
|
|
|
JS::MutableHandle<JS::Value> aRetval,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetReplaceableWindowCoord(JSContext* aCx, WindowCoordSetter aSetter,
|
|
|
|
JS::Handle<JS::Value> aValue,
|
|
|
|
const char* aPropName,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
// And the implementations of WindowCoordGetter/WindowCoordSetter.
|
|
|
|
protected:
|
|
|
|
int32_t GetInnerWidth(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
nsresult GetInnerWidth(int32_t* aWidth) override;
|
|
|
|
void SetInnerWidth(int32_t aInnerWidth, mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
protected:
|
|
|
|
int32_t GetInnerHeight(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
nsresult GetInnerHeight(int32_t* aHeight) override;
|
|
|
|
void SetInnerHeight(int32_t aInnerHeight,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScreenX(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetScreenX(int32_t aScreenX, mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetScreenY(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetScreenY(int32_t aScreenY, mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetOuterWidth(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterWidth(int32_t aOuterWidth, mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
int32_t GetOuterHeight(mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
void SetOuterHeight(int32_t aOuterHeight,
|
|
|
|
mozilla::dom::CallerType aCallerType,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
RefPtr<mozilla::dom::WakeLock> mWakeLock;
|
|
|
|
|
|
|
|
friend class HashchangeCallback;
|
|
|
|
friend class mozilla::dom::BarProp;
|
|
|
|
|
|
|
|
// Object Management
|
2017-11-15 19:33:29 +03:00
|
|
|
virtual ~nsGlobalWindowInner();
|
2017-11-15 19:30:13 +03:00
|
|
|
|
2019-02-27 08:36:38 +03:00
|
|
|
void FreeInnerObjects();
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
// Only to be called on an inner window.
|
|
|
|
// aDocument must not be null.
|
2019-01-02 16:05:23 +03:00
|
|
|
void InnerSetNewDocument(JSContext* aCx, Document* aDocument);
|
2017-11-15 19:30:13 +03:00
|
|
|
|
2017-11-21 23:13:05 +03:00
|
|
|
nsresult EnsureClientSource();
|
|
|
|
nsresult ExecutionReady();
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// Inner windows only.
|
|
|
|
nsresult DefineArgumentsProperty(nsIArray* aArguments);
|
|
|
|
|
|
|
|
// Get the parent, returns null if this is a toplevel window
|
|
|
|
nsPIDOMWindowOuter* GetParentInternal();
|
|
|
|
|
|
|
|
public:
|
|
|
|
// popup tracking
|
|
|
|
bool IsPopupSpamWindow();
|
|
|
|
|
|
|
|
private:
|
2017-12-19 18:04:48 +03:00
|
|
|
// A type that methods called by CallOnChildren can return. If Stop
|
|
|
|
// is returned then CallOnChildren will stop calling further children.
|
|
|
|
// If Continue is returned then CallOnChildren will keep calling further
|
|
|
|
// children.
|
|
|
|
enum class CallState {
|
|
|
|
Continue,
|
|
|
|
Stop,
|
|
|
|
};
|
|
|
|
|
|
|
|
// Call the given method on the immediate children of this window. The
|
|
|
|
// CallState returned by the last child method invocation is returned or
|
|
|
|
// CallState::Continue if the method returns void.
|
|
|
|
template <typename Method, typename... Args>
|
|
|
|
CallState CallOnChildren(Method aMethod, Args&... aArgs);
|
|
|
|
|
|
|
|
// Helper to convert a void returning child method into an implicit
|
|
|
|
// CallState::Continue value.
|
|
|
|
template <typename Return, typename Method, typename... Args>
|
|
|
|
typename std::enable_if<std::is_void<Return>::value,
|
|
|
|
nsGlobalWindowInner::CallState>::type
|
|
|
|
CallChild(nsGlobalWindowInner* aWindow, Method aMethod, Args&... aArgs) {
|
|
|
|
(aWindow->*aMethod)(aArgs...);
|
|
|
|
return nsGlobalWindowInner::CallState::Continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Helper that passes through the CallState value from a child method.
|
|
|
|
template <typename Return, typename Method, typename... Args>
|
|
|
|
typename std::enable_if<
|
|
|
|
std::is_same<Return, nsGlobalWindowInner::CallState>::value,
|
|
|
|
nsGlobalWindowInner::CallState>::type
|
|
|
|
CallChild(nsGlobalWindowInner* aWindow, Method aMethod, Args&... aArgs) {
|
|
|
|
return (aWindow->*aMethod)(aArgs...);
|
|
|
|
}
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
void FreezeInternal();
|
|
|
|
void ThawInternal();
|
|
|
|
|
2017-12-19 18:04:48 +03:00
|
|
|
CallState ShouldReportForServiceWorkerScopeInternal(const nsACString& aScope,
|
|
|
|
bool* aResultOut);
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
// Timeout Functions
|
|
|
|
// |interval| is in milliseconds.
|
|
|
|
int32_t SetTimeoutOrInterval(
|
|
|
|
JSContext* aCx, mozilla::dom::Function& aFunction, 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);
|
|
|
|
|
|
|
|
// Return true if |aTimeout| was cleared while its handler ran.
|
2019-03-19 23:52:03 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
2017-11-15 19:30:13 +03:00
|
|
|
bool RunTimeoutHandler(mozilla::dom::Timeout* aTimeout,
|
|
|
|
nsIScriptContext* aScx);
|
|
|
|
|
|
|
|
// Helper Functions
|
|
|
|
already_AddRefed<nsIDocShellTreeOwner> GetTreeOwner();
|
|
|
|
already_AddRefed<nsIWebBrowserChrome> GetWebBrowserChrome();
|
|
|
|
bool IsPrivateBrowsing();
|
|
|
|
|
|
|
|
void FireOfflineStatusEventIfChanged();
|
|
|
|
|
|
|
|
public:
|
|
|
|
// Inner windows only.
|
|
|
|
nsresult FireHashchange(const nsAString& aOldURL, const nsAString& aNewURL);
|
|
|
|
|
|
|
|
void FlushPendingNotifications(mozilla::FlushType aType);
|
|
|
|
|
|
|
|
void ScrollTo(const mozilla::CSSIntPoint& aScroll,
|
|
|
|
const mozilla::dom::ScrollOptions& aOptions);
|
|
|
|
|
|
|
|
bool IsFrame();
|
|
|
|
|
|
|
|
already_AddRefed<nsIWidget> GetMainWidget();
|
|
|
|
nsIWidget* GetNearestWidget() const;
|
|
|
|
|
|
|
|
bool IsInModalState();
|
|
|
|
|
2018-04-26 22:28:30 +03:00
|
|
|
virtual void SetFocusedElement(mozilla::dom::Element* aElement,
|
|
|
|
uint32_t aFocusMethod = 0,
|
|
|
|
bool aNeedsFocus = false) override;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
virtual uint32_t GetFocusMethod() override;
|
|
|
|
|
|
|
|
virtual bool ShouldShowFocusRing() override;
|
|
|
|
|
|
|
|
// Inner windows only.
|
|
|
|
void UpdateCanvasFocus(bool aFocusChanged, nsIContent* aNewContent);
|
|
|
|
|
|
|
|
public:
|
|
|
|
virtual already_AddRefed<nsPIWindowRoot> GetTopWindowRoot() override;
|
|
|
|
|
2018-08-10 21:55:27 +03:00
|
|
|
// Get the toplevel principal, returns null if this is a toplevel window.
|
|
|
|
nsIPrincipal* GetTopLevelPrincipal();
|
|
|
|
|
|
|
|
// Get the parent principal, returns null if this or the parent are not a
|
|
|
|
// toplevel window. This is mainly used to determine the anti-tracking storage
|
|
|
|
// area.
|
2018-07-13 13:02:19 +03:00
|
|
|
nsIPrincipal* GetTopLevelStorageAreaPrincipal();
|
|
|
|
|
2018-11-23 10:12:02 +03:00
|
|
|
// This method is called if this window loads a 3rd party tracking resource
|
|
|
|
// and the storage is just been granted. The window can reset the partitioned
|
|
|
|
// storage objects and switch to the first party cookie jar.
|
|
|
|
void StorageAccessGranted();
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
protected:
|
|
|
|
static void NotifyDOMWindowDestroyed(nsGlobalWindowInner* aWindow);
|
|
|
|
void NotifyWindowIDDestroyed(const char* aTopic);
|
|
|
|
|
|
|
|
static void NotifyDOMWindowFrozen(nsGlobalWindowInner* aWindow);
|
|
|
|
static void NotifyDOMWindowThawed(nsGlobalWindowInner* aWindow);
|
|
|
|
|
|
|
|
virtual void UpdateParentTarget() override;
|
|
|
|
|
|
|
|
void InitializeShowFocusRings();
|
|
|
|
|
|
|
|
// Clear the document-dependent slots on our JS wrapper. Inner windows only.
|
|
|
|
void ClearDocumentDependentSlots(JSContext* aCx);
|
|
|
|
|
|
|
|
// Inner windows only.
|
|
|
|
already_AddRefed<mozilla::dom::StorageEvent> CloneStorageEvent(
|
|
|
|
const nsAString& aType, const RefPtr<mozilla::dom::StorageEvent>& aEvent,
|
|
|
|
mozilla::ErrorResult& aRv);
|
2018-11-30 13:46:48 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
protected:
|
|
|
|
already_AddRefed<nsICSSDeclaration> GetComputedStyleHelper(
|
|
|
|
mozilla::dom::Element& aElt, const nsAString& aPseudoElt,
|
|
|
|
bool aDefaultStylesOnly, mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
nsGlobalWindowInner* InnerForSetTimeoutOrInterval(
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
void PostMessageMoz(JSContext* aCx, JS::Handle<JS::Value> aMessage,
|
|
|
|
const nsAString& aTargetOrigin,
|
|
|
|
JS::Handle<JS::Value> aTransfer,
|
|
|
|
nsIPrincipal& aSubjectPrincipal,
|
|
|
|
mozilla::ErrorResult& aError);
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Fire the JS engine's onNewGlobalObject hook. Only used on inner windows.
|
|
|
|
void FireOnNewGlobalObject();
|
|
|
|
|
2018-03-22 06:18:51 +03:00
|
|
|
// Helper for resolving the components shim.
|
|
|
|
bool ResolveComponentsShim(JSContext* aCx, JS::Handle<JSObject*> aObj,
|
|
|
|
JS::MutableHandle<JS::PropertyDescriptor> aDesc);
|
|
|
|
|
2017-11-21 21:47:36 +03:00
|
|
|
// nsPIDOMWindow{Inner,Outer} should be able to see these helper methods.
|
2017-11-15 19:34:04 +03:00
|
|
|
friend class nsPIDOMWindowInner;
|
|
|
|
friend class nsPIDOMWindowOuter;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
mozilla::dom::TabGroup* TabGroupInner();
|
|
|
|
|
|
|
|
bool IsBackgroundInternal() const;
|
|
|
|
|
|
|
|
// NOTE: Chrome Only
|
|
|
|
void DisconnectAndClearGroupMessageManagers() {
|
|
|
|
MOZ_RELEASE_ASSERT(IsChromeWindow());
|
|
|
|
for (auto iter = mChromeFields.mGroupMessageManagers.Iter(); !iter.Done();
|
|
|
|
iter.Next()) {
|
2017-06-14 17:44:17 +03:00
|
|
|
mozilla::dom::ChromeMessageBroadcaster* mm = iter.UserData();
|
2017-11-15 19:30:13 +03:00
|
|
|
if (mm) {
|
2017-06-14 17:44:17 +03:00
|
|
|
mm->Disconnect();
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
mChromeFields.mGroupMessageManagers.Clear();
|
|
|
|
}
|
|
|
|
|
2018-03-03 14:37:59 +03:00
|
|
|
// Call or Cancel mDocumentFlushedResolvers items, and perform MicroTask
|
|
|
|
// checkpoint after that, and adds observer if new mDocumentFlushedResolvers
|
|
|
|
// items are added while Promise callbacks inside the checkpoint.
|
|
|
|
template <bool call>
|
|
|
|
void CallOrCancelDocumentFlushedResolvers();
|
|
|
|
|
2018-02-12 04:14:49 +03:00
|
|
|
void CallDocumentFlushedResolvers();
|
|
|
|
void CancelDocumentFlushedResolvers();
|
|
|
|
|
2019-01-15 02:21:05 +03:00
|
|
|
// Return true if we need to notify browsing context to reset its user gesture
|
|
|
|
// activation flag.
|
|
|
|
bool ShouldResetBrowsingContextUserGestureActivation();
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
public:
|
|
|
|
// Dispatch a runnable related to the global.
|
|
|
|
virtual nsresult Dispatch(mozilla::TaskCategory aCategory,
|
|
|
|
already_AddRefed<nsIRunnable>&& aRunnable) override;
|
|
|
|
|
|
|
|
virtual nsISerialEventTarget* EventTargetFor(
|
|
|
|
mozilla::TaskCategory aCategory) const override;
|
|
|
|
|
|
|
|
virtual mozilla::AbstractThread* AbstractMainThreadFor(
|
|
|
|
mozilla::TaskCategory aCategory) override;
|
|
|
|
|
|
|
|
void DisableIdleCallbackRequests();
|
|
|
|
uint32_t LastIdleRequestHandle() const {
|
|
|
|
return mIdleRequestCallbackCounter - 1;
|
|
|
|
}
|
2019-03-19 10:22:05 +03:00
|
|
|
MOZ_CAN_RUN_SCRIPT
|
|
|
|
void RunIdleRequest(mozilla::dom::IdleRequest* aRequest,
|
|
|
|
DOMHighResTimeStamp aDeadline, bool aDidTimeout);
|
|
|
|
MOZ_CAN_RUN_SCRIPT
|
|
|
|
void ExecuteIdleRequest(TimeStamp aDeadline);
|
2017-11-15 19:30:13 +03:00
|
|
|
void ScheduleIdleRequestDispatch();
|
|
|
|
void SuspendIdleRequests();
|
|
|
|
void ResumeIdleRequests();
|
|
|
|
|
2017-11-28 22:23:46 +03:00
|
|
|
typedef mozilla::LinkedList<RefPtr<mozilla::dom::IdleRequest>> IdleRequests;
|
2017-11-15 19:30:13 +03:00
|
|
|
void RemoveIdleCallback(mozilla::dom::IdleRequest* aRequest);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
// Window offline status. Checked to see if we need to fire offline event
|
|
|
|
bool mWasOffline : 1;
|
|
|
|
|
|
|
|
// Represents whether the inner window's page has had a slow script notice.
|
|
|
|
// Only used by inner windows; will always be false for outer windows.
|
|
|
|
// This is used to implement Telemetry measures such as
|
|
|
|
// SLOW_SCRIPT_PAGE_COUNT.
|
|
|
|
bool mHasHadSlowScript : 1;
|
|
|
|
|
|
|
|
// Fast way to tell if this is a chrome window (without having to QI).
|
|
|
|
bool mIsChrome : 1;
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
bool mCleanMessageManager : 1;
|
|
|
|
|
|
|
|
// Indicates that the current document has never received a document focus
|
|
|
|
// event.
|
|
|
|
bool mNeedsFocus : 1;
|
|
|
|
bool mHasFocus : 1;
|
|
|
|
|
|
|
|
// when true, show focus rings for the current focused content only.
|
|
|
|
// This will be reset when another element is focused
|
|
|
|
bool mShowFocusRingForContent : 1;
|
|
|
|
|
|
|
|
// true if tab navigation has occurred for this window. Focus rings
|
|
|
|
// should be displayed.
|
|
|
|
bool mFocusByKeyOccurred : 1;
|
|
|
|
|
2019-02-23 00:27:44 +03:00
|
|
|
// True if we have notified document-element-inserted observers for this
|
|
|
|
// document.
|
|
|
|
bool mDidFireDocElemInserted : 1;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// Indicates whether this window wants gamepad input events
|
|
|
|
bool mHasGamepad : 1;
|
|
|
|
|
|
|
|
// Indicates whether this window wants VR events
|
|
|
|
bool mHasVREvents : 1;
|
|
|
|
|
|
|
|
// Indicates whether this window wants VRDisplayActivate events
|
|
|
|
bool mHasVRDisplayActivateEvents : 1;
|
|
|
|
nsCheapSet<nsUint32HashKey> mGamepadIndexSet;
|
|
|
|
nsRefPtrHashtable<nsUint32HashKey, mozilla::dom::Gamepad> mGamepads;
|
|
|
|
bool mHasSeenGamepadInput;
|
|
|
|
|
|
|
|
RefPtr<nsScreen> mScreen;
|
2017-11-21 23:06:21 +03:00
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
RefPtr<mozilla::dom::BarProp> mMenubar;
|
|
|
|
RefPtr<mozilla::dom::BarProp> mToolbar;
|
|
|
|
RefPtr<mozilla::dom::BarProp> mLocationbar;
|
|
|
|
RefPtr<mozilla::dom::BarProp> mPersonalbar;
|
|
|
|
RefPtr<mozilla::dom::BarProp> mStatusbar;
|
|
|
|
RefPtr<mozilla::dom::BarProp> mScrollbars;
|
2017-11-21 23:06:21 +03:00
|
|
|
|
|
|
|
RefPtr<nsGlobalWindowObserver> mObserver;
|
2017-11-15 19:30:13 +03:00
|
|
|
RefPtr<mozilla::dom::Crypto> mCrypto;
|
|
|
|
RefPtr<mozilla::dom::U2F> mU2F;
|
|
|
|
RefPtr<mozilla::dom::cache::CacheStorage> mCacheStorage;
|
|
|
|
RefPtr<mozilla::dom::Console> mConsole;
|
|
|
|
RefPtr<mozilla::dom::Worklet> mPaintWorklet;
|
|
|
|
// 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;
|
2018-03-22 06:18:51 +03:00
|
|
|
RefPtr<mozilla::dom::InstallTriggerImpl> mInstallTrigger;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
RefPtr<mozilla::dom::Storage> mLocalStorage;
|
|
|
|
RefPtr<mozilla::dom::Storage> mSessionStorage;
|
|
|
|
|
|
|
|
RefPtr<mozilla::EventListenerManager> mListenerManager;
|
|
|
|
RefPtr<mozilla::dom::Location> mLocation;
|
|
|
|
RefPtr<nsHistory> mHistory;
|
|
|
|
RefPtr<mozilla::dom::CustomElementRegistry> mCustomElements;
|
|
|
|
|
2018-11-20 02:18:21 +03:00
|
|
|
nsTObserverArray<RefPtr<mozilla::dom::SharedWorker>> mSharedWorkers;
|
|
|
|
|
2018-08-20 23:28:42 +03:00
|
|
|
RefPtr<mozilla::dom::VisualViewport> mVisualViewport;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
nsCOMPtr<nsIPrincipal> mDocumentPrincipal;
|
|
|
|
// mTabChild is only ever populated in the content process.
|
|
|
|
nsCOMPtr<nsITabChild> mTabChild;
|
|
|
|
|
|
|
|
uint32_t mSuspendDepth;
|
|
|
|
uint32_t mFreezeDepth;
|
|
|
|
|
2018-11-23 18:14:23 +03:00
|
|
|
#ifdef DEBUG
|
|
|
|
uint32_t mSerial;
|
|
|
|
#endif
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// the method that was used to focus mFocusedNode
|
|
|
|
uint32_t mFocusMethod;
|
|
|
|
|
|
|
|
// The current idle request callback handle
|
|
|
|
uint32_t mIdleRequestCallbackCounter;
|
|
|
|
IdleRequests mIdleRequestCallbacks;
|
|
|
|
RefPtr<IdleRequestExecutor> mIdleRequestExecutor;
|
|
|
|
|
|
|
|
#ifdef DEBUG
|
|
|
|
nsCOMPtr<nsIURI> mLastOpenedURI;
|
|
|
|
#endif
|
|
|
|
|
2018-07-14 01:42:07 +03:00
|
|
|
RefPtr<nsDOMOfflineResourceList> mApplicationCache;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
using XBLPrototypeHandlerTable =
|
|
|
|
nsJSThingHashtable<nsPtrHashKey<nsXBLPrototypeHandler>, JSObject*>;
|
|
|
|
mozilla::UniquePtr<XBLPrototypeHandlerTable> mCachedXBLPrototypeHandlers;
|
|
|
|
|
|
|
|
RefPtr<mozilla::dom::IDBFactory> mIndexedDB;
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
uint32_t mDialogAbuseCount;
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
TimeStamp mLastDialogQuitTime;
|
|
|
|
|
|
|
|
// This flag keeps track of whether dialogs are
|
|
|
|
// currently enabled on this window.
|
|
|
|
bool mAreDialogsEnabled;
|
|
|
|
|
2018-02-12 04:14:49 +03:00
|
|
|
// This flag keeps track of whether this window is currently
|
|
|
|
// observing DidRefresh notifications from the refresh driver.
|
|
|
|
bool mObservingDidRefresh;
|
|
|
|
// This flag keeps track of whether or not we're going through
|
|
|
|
// promiseDocumentFlushed resolvers. When true, promiseDocumentFlushed
|
|
|
|
// cannot be called.
|
|
|
|
bool mIteratingDocumentFlushedResolvers;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
nsTArray<uint32_t> mEnabledSensors;
|
|
|
|
|
|
|
|
#if defined(MOZ_WIDGET_ANDROID)
|
|
|
|
mozilla::UniquePtr<mozilla::dom::WindowOrientationObserver>
|
|
|
|
mOrientationChangeObserver;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef MOZ_WEBSPEECH
|
|
|
|
RefPtr<mozilla::dom::SpeechSynthesis> mSpeechSynthesis;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// This is the CC generation the last time we called CanSkip.
|
|
|
|
uint32_t mCanSkipCCGeneration;
|
|
|
|
|
|
|
|
// The VR Displays for this window
|
|
|
|
nsTArray<RefPtr<mozilla::dom::VRDisplay>> mVRDisplays;
|
|
|
|
|
|
|
|
RefPtr<mozilla::dom::VREventObserver> mVREventObserver;
|
|
|
|
|
2017-11-21 23:06:21 +03:00
|
|
|
int64_t mBeforeUnloadListenerCount;
|
2017-11-15 19:30:13 +03:00
|
|
|
|
|
|
|
RefPtr<mozilla::dom::IntlUtils> mIntlUtils;
|
|
|
|
|
2017-11-21 23:13:05 +03:00
|
|
|
mozilla::UniquePtr<mozilla::dom::ClientSource> mClientSource;
|
|
|
|
|
2017-12-07 03:48:18 +03:00
|
|
|
nsTArray<RefPtr<mozilla::dom::Promise>> mPendingPromises;
|
|
|
|
|
2018-02-12 04:14:49 +03:00
|
|
|
nsTArray<mozilla::UniquePtr<PromiseDocumentFlushedResolver>>
|
|
|
|
mDocumentFlushedResolvers;
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
static InnerWindowByIdTable* sInnerWindowsById;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
// Members in the mChromeFields member should only be used in chrome windows.
|
|
|
|
// All accesses to this field should be guarded by a check of mIsChrome.
|
|
|
|
struct ChromeFields {
|
|
|
|
ChromeFields() : mGroupMessageManagers(1) {}
|
|
|
|
|
2017-06-14 17:44:17 +03:00
|
|
|
RefPtr<mozilla::dom::ChromeMessageBroadcaster> mMessageManager;
|
|
|
|
nsRefPtrHashtable<nsStringHashKey, mozilla::dom::ChromeMessageBroadcaster>
|
|
|
|
mGroupMessageManagers;
|
2017-11-15 19:30:13 +03:00
|
|
|
} mChromeFields;
|
|
|
|
|
2017-11-22 00:36:13 +03:00
|
|
|
// These fields are used by the inner and outer windows to prevent
|
|
|
|
// programatically moving the window while the mouse is down.
|
|
|
|
static bool sMouseDown;
|
|
|
|
static bool sDragServiceDisabled;
|
|
|
|
|
2017-11-15 19:30:13 +03:00
|
|
|
friend class nsDOMScriptableHelper;
|
|
|
|
friend class nsDOMWindowUtils;
|
|
|
|
friend class mozilla::dom::PostMessageEvent;
|
|
|
|
friend class DesktopNotification;
|
|
|
|
friend class mozilla::dom::TimeoutManager;
|
|
|
|
friend class IdleRequestExecutor;
|
2017-11-15 19:33:29 +03:00
|
|
|
friend class nsGlobalWindowOuter;
|
2017-11-15 19:30:13 +03:00
|
|
|
};
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsISupports* ToSupports(nsGlobalWindowInner* p) {
|
2018-04-20 07:49:30 +03:00
|
|
|
return static_cast<mozilla::dom::EventTarget*>(p);
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsISupports* ToCanonicalSupports(nsGlobalWindowInner* p) {
|
2018-04-20 07:49:30 +03:00
|
|
|
return static_cast<mozilla::dom::EventTarget*>(p);
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
// XXX: EWW - This is an awful hack - let's not do this
|
|
|
|
#include "nsGlobalWindowOuter.h"
|
2017-11-15 19:30:13 +03:00
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsIGlobalObject* nsGlobalWindowInner::GetOwnerGlobal() const {
|
|
|
|
return const_cast<nsGlobalWindowInner*>(this);
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsGlobalWindowOuter* nsGlobalWindowInner::GetTopInternal() {
|
2017-11-15 19:34:13 +03:00
|
|
|
nsGlobalWindowOuter* outer = GetOuterWindowInternal();
|
2017-11-15 19:30:13 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowOuter> top = outer ? outer->GetTop() : nullptr;
|
|
|
|
if (top) {
|
|
|
|
return nsGlobalWindowOuter::Cast(top);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsGlobalWindowOuter* nsGlobalWindowInner::GetScriptableTopInternal() {
|
2017-11-15 19:30:13 +03:00
|
|
|
nsPIDOMWindowOuter* top = GetScriptableTop();
|
|
|
|
return nsGlobalWindowOuter::Cast(top);
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline nsIScriptContext* nsGlobalWindowInner::GetContextInternal() {
|
|
|
|
if (mOuterWindow) {
|
|
|
|
return GetOuterWindowInternal()->mContext;
|
2017-11-15 19:30:13 +03:00
|
|
|
}
|
|
|
|
|
2017-11-21 23:06:21 +03:00
|
|
|
return nullptr;
|
2017-11-15 19:33:29 +03:00
|
|
|
}
|
|
|
|
|
2017-11-15 19:34:47 +03:00
|
|
|
inline nsGlobalWindowOuter* nsGlobalWindowInner::GetOuterWindowInternal()
|
|
|
|
const {
|
2017-11-15 19:30:13 +03:00
|
|
|
return nsGlobalWindowOuter::Cast(GetOuterWindow());
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline bool nsGlobalWindowInner::IsPopupSpamWindow() {
|
2017-11-22 02:07:45 +03:00
|
|
|
if (!mOuterWindow) {
|
2017-11-15 19:30:13 +03:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return GetOuterWindowInternal()->mIsPopupSpam;
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
inline bool nsGlobalWindowInner::IsFrame() {
|
2017-11-15 19:30:13 +03:00
|
|
|
return GetParentInternal() != nullptr;
|
|
|
|
}
|
|
|
|
|
2017-11-15 19:33:29 +03:00
|
|
|
#endif /* nsGlobalWindowInner_h___ */
|