зеркало из https://github.com/mozilla/gecko-dev.git
151 строка
5.1 KiB
C++
151 строка
5.1 KiB
C++
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
|
/* vim: set sw=2 ts=8 et tw=80 ft=cpp : */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_dom_WindowGlobalChild_h
|
|
#define mozilla_dom_WindowGlobalChild_h
|
|
|
|
#include "mozilla/RefPtr.h"
|
|
#include "mozilla/dom/PWindowGlobalChild.h"
|
|
#include "nsRefPtrHashtable.h"
|
|
#include "nsWrapperCache.h"
|
|
#include "mozilla/dom/WindowGlobalActor.h"
|
|
|
|
class nsGlobalWindowInner;
|
|
class nsDocShell;
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
|
|
class BrowsingContext;
|
|
class WindowGlobalParent;
|
|
class JSWindowActorChild;
|
|
class JSWindowActorMessageMeta;
|
|
class BrowserChild;
|
|
|
|
/**
|
|
* Actor for a single nsGlobalWindowInner. This actor is used to communicate
|
|
* information to the parent process asynchronously.
|
|
*/
|
|
class WindowGlobalChild final : public WindowGlobalActor,
|
|
public PWindowGlobalChild {
|
|
friend class PWindowGlobalChild;
|
|
|
|
public:
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_CYCLE_COLLECTION_SCRIPT_HOLDER_CLASS_INHERITED(WindowGlobalChild,
|
|
WindowGlobalActor)
|
|
|
|
static already_AddRefed<WindowGlobalChild> GetByInnerWindowId(
|
|
uint64_t aInnerWindowId);
|
|
|
|
static already_AddRefed<WindowGlobalChild> GetByInnerWindowId(
|
|
const GlobalObject& aGlobal, uint64_t aInnerWindowId) {
|
|
return GetByInnerWindowId(aInnerWindowId);
|
|
}
|
|
|
|
dom::BrowsingContext* BrowsingContext() override { return mBrowsingContext; }
|
|
nsGlobalWindowInner* WindowGlobal() { return mWindowGlobal; }
|
|
|
|
// Has this actor been shut down
|
|
bool IsClosed() { return !CanSend(); }
|
|
void Destroy();
|
|
|
|
// Check if this actor is managed by PInProcess, as-in the document is loaded
|
|
// in the chrome process.
|
|
bool IsInProcess() { return XRE_IsParentProcess(); }
|
|
|
|
nsIURI* GetDocumentURI() override { return mDocumentURI; }
|
|
void SetDocumentURI(nsIURI* aDocumentURI);
|
|
|
|
nsIPrincipal* DocumentPrincipal() { return mDocumentPrincipal; }
|
|
|
|
// The Window ID for this WindowGlobal
|
|
uint64_t InnerWindowId() { return mInnerWindowId; }
|
|
uint64_t OuterWindowId() { return mOuterWindowId; }
|
|
|
|
uint64_t ContentParentId();
|
|
|
|
int64_t BeforeUnloadListeners() { return mBeforeUnloadListeners; }
|
|
void BeforeUnloadAdded();
|
|
void BeforeUnloadRemoved();
|
|
|
|
bool IsCurrentGlobal();
|
|
|
|
bool IsProcessRoot();
|
|
|
|
// Get the other side of this actor if it is an in-process actor. Returns
|
|
// |nullptr| if the actor has been torn down, or is not in-process.
|
|
already_AddRefed<WindowGlobalParent> GetParentActor();
|
|
|
|
// Get this actor's manager if it is not an in-process actor. Returns
|
|
// |nullptr| if the actor has been torn down, or is in-process.
|
|
already_AddRefed<BrowserChild> GetBrowserChild();
|
|
|
|
void ReceiveRawMessage(const JSWindowActorMessageMeta& aMeta,
|
|
ipc::StructuredCloneData&& aData);
|
|
|
|
// Get a JS actor object by name.
|
|
already_AddRefed<JSWindowActorChild> GetActor(const nsAString& aName,
|
|
ErrorResult& aRv);
|
|
|
|
// Create and initialize the WindowGlobalChild object.
|
|
static already_AddRefed<WindowGlobalChild> Create(
|
|
nsGlobalWindowInner* aWindow);
|
|
|
|
WindowGlobalChild(const WindowGlobalInit& aInit,
|
|
nsGlobalWindowInner* aWindow);
|
|
|
|
void Init();
|
|
|
|
void InitWindowGlobal(nsGlobalWindowInner* aWindow);
|
|
|
|
nsISupports* GetParentObject();
|
|
JSObject* WrapObject(JSContext* aCx,
|
|
JS::Handle<JSObject*> aGivenProto) override;
|
|
|
|
protected:
|
|
const nsAString& GetRemoteType() override;
|
|
JSWindowActor::Type GetSide() override { return JSWindowActor::Type::Child; }
|
|
|
|
// IPC messages
|
|
mozilla::ipc::IPCResult RecvRawMessage(const JSWindowActorMessageMeta& aMeta,
|
|
const ClonedMessageData& aData);
|
|
|
|
mozilla::ipc::IPCResult RecvLoadURIInChild(nsDocShellLoadState* aLoadState);
|
|
|
|
mozilla::ipc::IPCResult RecvChangeFrameRemoteness(
|
|
dom::BrowsingContext* aBc, const nsString& aRemoteType,
|
|
uint64_t aPendingSwitchId, ChangeFrameRemotenessResolver&& aResolver);
|
|
|
|
mozilla::ipc::IPCResult RecvDrawSnapshot(const Maybe<IntRect>& aRect,
|
|
const float& aScale,
|
|
const nscolor& aBackgroundColor,
|
|
const uint32_t& aFlags,
|
|
DrawSnapshotResolver&& aResolve);
|
|
|
|
mozilla::ipc::IPCResult RecvGetSecurityInfo(
|
|
GetSecurityInfoResolver&& aResolve);
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
|
|
|
private:
|
|
~WindowGlobalChild();
|
|
|
|
RefPtr<nsGlobalWindowInner> mWindowGlobal;
|
|
RefPtr<dom::BrowsingContext> mBrowsingContext;
|
|
nsRefPtrHashtable<nsStringHashKey, JSWindowActorChild> mWindowActors;
|
|
nsCOMPtr<nsIPrincipal> mDocumentPrincipal;
|
|
nsCOMPtr<nsIURI> mDocumentURI;
|
|
uint64_t mInnerWindowId;
|
|
uint64_t mOuterWindowId;
|
|
int64_t mBeforeUnloadListeners;
|
|
};
|
|
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // !defined(mozilla_dom_WindowGlobalChild_h)
|