зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1343728 - Part 3: Remove the window creation sync IPC calls, r=billm, r=smaug
MozReview-Commit-ID: IWayDUWuRrf
This commit is contained in:
Родитель
e61a1cdcfb
Коммит
c0d7319a4f
|
@ -857,6 +857,17 @@ ContentChild::ProvideWindowCommon(TabChild* aTabOpener,
|
|||
uint32_t maxTouchPoints = 0;
|
||||
DimensionInfo dimensionInfo;
|
||||
|
||||
nsCOMPtr<nsPIDOMWindowInner> parentTopInnerWindow;
|
||||
if (aParent) {
|
||||
nsCOMPtr<nsPIDOMWindowOuter> parentTopWindow =
|
||||
nsPIDOMWindowOuter::From(aParent)->GetTop();
|
||||
if (parentTopWindow) {
|
||||
parentTopInnerWindow = parentTopWindow->GetCurrentInnerWindow();
|
||||
}
|
||||
}
|
||||
|
||||
// Send down the request to open the window.
|
||||
RefPtr<CreateWindowPromise> windowCreated;
|
||||
if (aIframeMoz) {
|
||||
MOZ_ASSERT(aTabOpener);
|
||||
nsAutoCString url;
|
||||
|
@ -869,10 +880,11 @@ ContentChild::ProvideWindowCommon(TabChild* aTabOpener,
|
|||
url.SetIsVoid(true);
|
||||
}
|
||||
|
||||
newChild->SendBrowserFrameOpenWindow(aTabOpener, renderFrame, NS_ConvertUTF8toUTF16(url),
|
||||
name, NS_ConvertUTF8toUTF16(features),
|
||||
aWindowIsNew, &textureFactoryIdentifier,
|
||||
&layersId, &compositorOptions, &maxTouchPoints);
|
||||
// NOTE: BrowserFrameOpenWindowPromise is the same type as
|
||||
// CreateWindowPromise, and this code depends on that fact.
|
||||
windowCreated =
|
||||
newChild->SendBrowserFrameOpenWindow(aTabOpener, renderFrame, NS_ConvertUTF8toUTF16(url),
|
||||
name, NS_ConvertUTF8toUTF16(features));
|
||||
} else {
|
||||
nsAutoCString baseURIString;
|
||||
float fullZoom;
|
||||
|
@ -881,30 +893,89 @@ ContentChild::ProvideWindowCommon(TabChild* aTabOpener,
|
|||
return rv;
|
||||
}
|
||||
|
||||
if (!SendCreateWindow(aTabOpener, newChild, renderFrame,
|
||||
aChromeFlags, aCalledFromJS, aPositionSpecified,
|
||||
aSizeSpecified,
|
||||
features,
|
||||
baseURIString,
|
||||
fullZoom,
|
||||
&rv,
|
||||
aWindowIsNew,
|
||||
&frameScripts,
|
||||
&urlToLoad,
|
||||
&textureFactoryIdentifier,
|
||||
&layersId,
|
||||
&compositorOptions,
|
||||
&maxTouchPoints,
|
||||
&dimensionInfo)) {
|
||||
PRenderFrameChild::Send__delete__(renderFrame);
|
||||
return NS_ERROR_NOT_AVAILABLE;
|
||||
}
|
||||
|
||||
if (NS_FAILED(rv)) {
|
||||
PRenderFrameChild::Send__delete__(renderFrame);
|
||||
return rv;
|
||||
}
|
||||
windowCreated =
|
||||
SendCreateWindow(aTabOpener, newChild, renderFrame,
|
||||
aChromeFlags, aCalledFromJS, aPositionSpecified,
|
||||
aSizeSpecified,
|
||||
features,
|
||||
baseURIString,
|
||||
fullZoom);
|
||||
}
|
||||
|
||||
// Await the promise being resolved. When the promise is resolved, we'll set
|
||||
// the `ready` local variable, which will cause us to exit our nested event
|
||||
// loop.
|
||||
bool ready = false;
|
||||
windowCreated->Then(SystemGroup::EventTargetFor(TaskCategory::Other), __func__,
|
||||
[&] (const CreatedWindowInfo& info) {
|
||||
rv = info.rv();
|
||||
*aWindowIsNew = info.windowOpened();
|
||||
frameScripts = info.frameScripts();
|
||||
urlToLoad = info.urlToLoad();
|
||||
textureFactoryIdentifier = info.textureFactoryIdentifier();
|
||||
layersId = info.layersId();
|
||||
compositorOptions = info.compositorOptions();
|
||||
maxTouchPoints = info.maxTouchPoints();
|
||||
dimensionInfo = info.dimensions();
|
||||
ready = true;
|
||||
},
|
||||
[&] (const CreateWindowPromise::RejectValueType aReason) {
|
||||
NS_WARNING("windowCreated promise rejected");
|
||||
rv = NS_ERROR_NOT_AVAILABLE;
|
||||
ready = true;
|
||||
});
|
||||
|
||||
// =======================
|
||||
// Begin Nested Event Loop
|
||||
// =======================
|
||||
|
||||
// We have to wait for a response from either SendCreateWindow or
|
||||
// SendBrowserFrameOpenWindow with information we're going to need to return
|
||||
// from this function, So we spin a nested event loop until they get back to
|
||||
// us.
|
||||
|
||||
// Prevent the docshell from becoming active while the nested event loop is
|
||||
// spinning.
|
||||
newChild->AddPendingDocShellBlocker();
|
||||
auto removePendingDocShellBlocker = MakeScopeExit([&] {
|
||||
if (newChild) {
|
||||
newChild->RemovePendingDocShellBlocker();
|
||||
}
|
||||
});
|
||||
|
||||
// Suspend our window if we have one to make sure we don't re-enter it.
|
||||
if (parentTopInnerWindow) {
|
||||
parentTopInnerWindow->Suspend();
|
||||
}
|
||||
|
||||
{
|
||||
AutoNoJSAPI nojsapi;
|
||||
|
||||
// Spin the event loop until we get a response. Callers of this function
|
||||
// already have to guard against an inner event loop spinning in the
|
||||
// non-e10s case because of the need to spin one to create a new chrome
|
||||
// window.
|
||||
SpinEventLoopUntil([&] () { return ready; });
|
||||
MOZ_RELEASE_ASSERT(ready,
|
||||
"We are on the main thread, so we should not exit this "
|
||||
"loop without ready being true.");
|
||||
}
|
||||
|
||||
if (parentTopInnerWindow) {
|
||||
parentTopInnerWindow->Resume();
|
||||
}
|
||||
|
||||
// =====================
|
||||
// End Nested Event Loop
|
||||
// =====================
|
||||
|
||||
// Handle the error which we got back from the parent process, if we got
|
||||
// one.
|
||||
if (NS_FAILED(rv)) {
|
||||
PRenderFrameChild::Send__delete__(renderFrame);
|
||||
return rv;
|
||||
}
|
||||
|
||||
if (!*aWindowIsNew) {
|
||||
PRenderFrameChild::Send__delete__(renderFrame);
|
||||
return NS_ERROR_ABORT;
|
||||
|
|
|
@ -4630,25 +4630,28 @@ ContentParent::RecvCreateWindow(PBrowserParent* aThisTab,
|
|||
const nsCString& aFeatures,
|
||||
const nsCString& aBaseURI,
|
||||
const float& aFullZoom,
|
||||
nsresult* aResult,
|
||||
bool* aWindowIsNew,
|
||||
InfallibleTArray<FrameScriptInfo>* aFrameScripts,
|
||||
nsCString* aURLToLoad,
|
||||
TextureFactoryIdentifier* aTextureFactoryIdentifier,
|
||||
uint64_t* aLayersId,
|
||||
CompositorOptions* aCompositorOptions,
|
||||
uint32_t* aMaxTouchPoints,
|
||||
DimensionInfo* aDimensions)
|
||||
CreateWindowResolver&& aResolve)
|
||||
{
|
||||
nsresult rv = NS_OK;
|
||||
CreatedWindowInfo cwi;
|
||||
|
||||
// We always expect to open a new window here. If we don't, it's an error.
|
||||
*aWindowIsNew = true;
|
||||
*aResult = NS_OK;
|
||||
cwi.windowOpened() = true;
|
||||
|
||||
// Make sure to resolve the resolver when this function exits, even if we
|
||||
// failed to generate a valid response.
|
||||
auto resolveOnExit = MakeScopeExit([&] {
|
||||
// Copy over the nsresult, and then resolve.
|
||||
cwi.rv() = rv;
|
||||
aResolve(cwi);
|
||||
});
|
||||
|
||||
TabParent* newTab = TabParent::GetFrom(aNewTab);
|
||||
MOZ_ASSERT(newTab);
|
||||
|
||||
auto destroyNewTabOnError = MakeScopeExit([&] {
|
||||
if (!*aWindowIsNew || NS_FAILED(*aResult)) {
|
||||
// We always expect to open a new window here. If we don't, it's an error.
|
||||
if (!cwi.windowOpened() || NS_FAILED(rv)) {
|
||||
if (newTab) {
|
||||
newTab->Destroy();
|
||||
}
|
||||
|
@ -4659,7 +4662,7 @@ ContentParent::RecvCreateWindow(PBrowserParent* aThisTab,
|
|||
// we must have an opener.
|
||||
newTab->SetHasContentOpener(true);
|
||||
|
||||
TabParent::AutoUseNewTab aunt(newTab, aURLToLoad);
|
||||
TabParent::AutoUseNewTab aunt(newTab, &cwi.urlToLoad());
|
||||
const uint64_t nextTabParentId = ++sNextTabParentId;
|
||||
sNextTabParents.Put(nextTabParentId, newTab);
|
||||
|
||||
|
@ -4668,35 +4671,35 @@ ContentParent::RecvCreateWindow(PBrowserParent* aThisTab,
|
|||
CommonCreateWindow(aThisTab, /* aSetOpener = */ true, aChromeFlags,
|
||||
aCalledFromJS, aPositionSpecified, aSizeSpecified,
|
||||
nullptr, aFeatures, aBaseURI, aFullZoom,
|
||||
nextTabParentId, NullString(), *aResult,
|
||||
newRemoteTab, aWindowIsNew);
|
||||
nextTabParentId, NullString(), rv,
|
||||
newRemoteTab, &cwi.windowOpened());
|
||||
if (!ipcResult) {
|
||||
return ipcResult;
|
||||
}
|
||||
|
||||
if (NS_WARN_IF(NS_FAILED(*aResult))) {
|
||||
if (NS_WARN_IF(NS_FAILED(rv))) {
|
||||
return IPC_OK();
|
||||
}
|
||||
|
||||
if (sNextTabParents.GetAndRemove(nextTabParentId).valueOr(nullptr)) {
|
||||
*aWindowIsNew = false;
|
||||
cwi.windowOpened() = false;
|
||||
}
|
||||
MOZ_ASSERT(TabParent::GetFrom(newRemoteTab) == newTab);
|
||||
|
||||
newTab->SwapFrameScriptsFrom(*aFrameScripts);
|
||||
newTab->SwapFrameScriptsFrom(cwi.frameScripts());
|
||||
|
||||
RenderFrameParent* rfp = static_cast<RenderFrameParent*>(aRenderFrame);
|
||||
if (!newTab->SetRenderFrame(rfp) ||
|
||||
!newTab->GetRenderFrameInfo(aTextureFactoryIdentifier, aLayersId)) {
|
||||
*aResult = NS_ERROR_FAILURE;
|
||||
!newTab->GetRenderFrameInfo(&cwi.textureFactoryIdentifier(), &cwi.layersId())) {
|
||||
rv = NS_ERROR_FAILURE;
|
||||
}
|
||||
*aCompositorOptions = rfp->GetCompositorOptions();
|
||||
cwi.compositorOptions() = rfp->GetCompositorOptions();
|
||||
|
||||
nsCOMPtr<nsIWidget> widget = newTab->GetWidget();
|
||||
*aMaxTouchPoints = widget ? widget->GetMaxTouchPoints() : 0;
|
||||
|
||||
// NOTE: widget must be set for this to return a meaningful value.
|
||||
*aDimensions = widget ? newTab->GetDimensionInfo() : DimensionInfo();
|
||||
if (widget) {
|
||||
cwi.maxTouchPoints() = widget->GetMaxTouchPoints();
|
||||
cwi.dimensions() = newTab->GetDimensionInfo();
|
||||
}
|
||||
|
||||
return IPC_OK();
|
||||
}
|
||||
|
|
|
@ -536,15 +536,7 @@ public:
|
|||
const nsCString& aFeatures,
|
||||
const nsCString& aBaseURI,
|
||||
const float& aFullZoom,
|
||||
nsresult* aResult,
|
||||
bool* aWindowIsNew,
|
||||
InfallibleTArray<FrameScriptInfo>* aFrameScripts,
|
||||
nsCString* aURLToLoad,
|
||||
layers::TextureFactoryIdentifier* aTextureFactoryIdentifier,
|
||||
uint64_t* aLayersId,
|
||||
mozilla::layers::CompositorOptions* aCompositorOptions,
|
||||
uint32_t* aMaxTouchPoints,
|
||||
DimensionInfo* aDimensions) override;
|
||||
CreateWindowResolver&& aResolve) override;
|
||||
|
||||
virtual mozilla::ipc::IPCResult RecvCreateWindowInDifferentProcess(
|
||||
PBrowserParent* aThisTab,
|
||||
|
|
|
@ -22,6 +22,8 @@ using CSSRect from "Units.h";
|
|||
using CSSSize from "Units.h";
|
||||
using mozilla::LayoutDeviceIntPoint from "Units.h";
|
||||
using mozilla::dom::ScreenOrientationInternal from "mozilla/dom/ScreenOrientation.h";
|
||||
using struct mozilla::layers::TextureFactoryIdentifier from "mozilla/layers/CompositorTypes.h";
|
||||
using mozilla::layers::CompositorOptions from "mozilla/layers/CompositorOptions.h";
|
||||
|
||||
namespace mozilla {
|
||||
namespace dom {
|
||||
|
@ -96,5 +98,27 @@ struct DimensionInfo
|
|||
LayoutDeviceIntPoint chromeDisp;
|
||||
};
|
||||
|
||||
struct FrameScriptInfo
|
||||
{
|
||||
nsString url;
|
||||
bool runInGlobalScope;
|
||||
};
|
||||
|
||||
/**
|
||||
* The information required to complete a window creation request.
|
||||
*/
|
||||
struct CreatedWindowInfo
|
||||
{
|
||||
nsresult rv;
|
||||
bool windowOpened;
|
||||
FrameScriptInfo[] frameScripts;
|
||||
nsCString urlToLoad;
|
||||
TextureFactoryIdentifier textureFactoryIdentifier;
|
||||
uint64_t layersId;
|
||||
CompositorOptions compositorOptions;
|
||||
uint32_t maxTouchPoints;
|
||||
DimensionInfo dimensions;
|
||||
};
|
||||
|
||||
} // namespace dom
|
||||
} // namespace mozilla
|
||||
|
|
|
@ -459,13 +459,9 @@ parent:
|
|||
*
|
||||
* @param opener the PBrowser whose content called window.open.
|
||||
*/
|
||||
sync BrowserFrameOpenWindow(PBrowser opener, PRenderFrame renderFrame,
|
||||
nsString aURL, nsString aName, nsString aFeatures)
|
||||
returns (bool windowOpened,
|
||||
TextureFactoryIdentifier textureFactoryIdentifier,
|
||||
uint64_t layersId,
|
||||
CompositorOptions compositorOptions,
|
||||
uint32_t maxTouchPoints);
|
||||
async BrowserFrameOpenWindow(PBrowser opener, PRenderFrame renderFrame,
|
||||
nsString aURL, nsString aName, nsString aFeatures)
|
||||
returns (CreatedWindowInfo window);
|
||||
|
||||
/**
|
||||
* Tells the containing widget whether the given input block results in a
|
||||
|
|
|
@ -176,14 +176,6 @@ struct DomainPolicyClone
|
|||
URIParams[] superWhitelist;
|
||||
};
|
||||
|
||||
|
||||
|
||||
struct FrameScriptInfo
|
||||
{
|
||||
nsString url;
|
||||
bool runInGlobalScope;
|
||||
};
|
||||
|
||||
struct AndroidSystemInfo
|
||||
{
|
||||
nsString device;
|
||||
|
@ -987,25 +979,17 @@ parent:
|
|||
sync GetGraphicsDeviceInitData()
|
||||
returns (ContentDeviceData aData);
|
||||
|
||||
sync CreateWindow(nullable PBrowser aThisTab,
|
||||
PBrowser aNewTab,
|
||||
PRenderFrame aRenderFrame,
|
||||
uint32_t aChromeFlags,
|
||||
bool aCalledFromJS,
|
||||
bool aPositionSpecified,
|
||||
bool aSizeSpecified,
|
||||
nsCString aFeatures,
|
||||
nsCString aBaseURI,
|
||||
float aFullZoom)
|
||||
returns (nsresult rv,
|
||||
bool windowOpened,
|
||||
FrameScriptInfo[] frameScripts,
|
||||
nsCString urlToLoad,
|
||||
TextureFactoryIdentifier textureFactoryIdentifier,
|
||||
uint64_t layersId,
|
||||
CompositorOptions compositorOptions,
|
||||
uint32_t maxTouchPoints,
|
||||
DimensionInfo dimensions);
|
||||
async CreateWindow(nullable PBrowser aThisTab,
|
||||
PBrowser aNewTab,
|
||||
PRenderFrame aRenderFrame,
|
||||
uint32_t aChromeFlags,
|
||||
bool aCalledFromJS,
|
||||
bool aPositionSpecified,
|
||||
bool aSizeSpecified,
|
||||
nsCString aFeatures,
|
||||
nsCString aBaseURI,
|
||||
float aFullZoom)
|
||||
returns (CreatedWindowInfo window);
|
||||
|
||||
async CreateWindowInDifferentProcess(
|
||||
PBrowser aThisTab,
|
||||
|
|
|
@ -2583,21 +2583,27 @@ TabParent::RecvBrowserFrameOpenWindow(PBrowserParent* aOpener,
|
|||
const nsString& aURL,
|
||||
const nsString& aName,
|
||||
const nsString& aFeatures,
|
||||
bool* aOutWindowOpened,
|
||||
TextureFactoryIdentifier* aTextureFactoryIdentifier,
|
||||
uint64_t* aLayersId,
|
||||
CompositorOptions* aCompositorOptions,
|
||||
uint32_t* aMaxTouchPoints)
|
||||
BrowserFrameOpenWindowResolver&& aResolve)
|
||||
{
|
||||
CreatedWindowInfo cwi;
|
||||
BrowserElementParent::OpenWindowResult opened =
|
||||
BrowserElementParent::OpenWindowOOP(TabParent::GetFrom(aOpener),
|
||||
this, aRenderFrame, aURL, aName, aFeatures,
|
||||
aTextureFactoryIdentifier, aLayersId);
|
||||
*aCompositorOptions = static_cast<RenderFrameParent*>(aRenderFrame)->GetCompositorOptions();
|
||||
*aOutWindowOpened = (opened == BrowserElementParent::OPEN_WINDOW_ADDED);
|
||||
&cwi.textureFactoryIdentifier(),
|
||||
&cwi.layersId());
|
||||
cwi.compositorOptions() =
|
||||
static_cast<RenderFrameParent*>(aRenderFrame)->GetCompositorOptions();
|
||||
cwi.windowOpened() = (opened == BrowserElementParent::OPEN_WINDOW_ADDED);
|
||||
nsCOMPtr<nsIWidget> widget = GetWidget();
|
||||
*aMaxTouchPoints = widget ? widget->GetMaxTouchPoints() : 0;
|
||||
if (!*aOutWindowOpened) {
|
||||
if (widget) {
|
||||
cwi.maxTouchPoints() = widget->GetMaxTouchPoints();
|
||||
cwi.dimensions() = GetDimensionInfo();
|
||||
}
|
||||
|
||||
// Resolve the request with the information we collected.
|
||||
aResolve(cwi);
|
||||
|
||||
if (!cwi.windowOpened()) {
|
||||
Destroy();
|
||||
}
|
||||
return IPC_OK();
|
||||
|
|
|
@ -165,16 +165,13 @@ public:
|
|||
virtual mozilla::ipc::IPCResult
|
||||
RecvSetHasBeforeUnload(const bool& aHasBeforeUnload) override;
|
||||
|
||||
virtual mozilla::ipc::IPCResult RecvBrowserFrameOpenWindow(PBrowserParent* aOpener,
|
||||
PRenderFrameParent* aRenderFrame,
|
||||
const nsString& aURL,
|
||||
const nsString& aName,
|
||||
const nsString& aFeatures,
|
||||
bool* aOutWindowOpened,
|
||||
TextureFactoryIdentifier* aTextureFactoryIdentifier,
|
||||
uint64_t* aLayersId,
|
||||
CompositorOptions* aCompositorOptions,
|
||||
uint32_t* aMaxTouchPoints) override;
|
||||
virtual mozilla::ipc::IPCResult
|
||||
RecvBrowserFrameOpenWindow(PBrowserParent* aOpener,
|
||||
PRenderFrameParent* aRenderFrame,
|
||||
const nsString& aURL,
|
||||
const nsString& aName,
|
||||
const nsString& aFeatures,
|
||||
BrowserFrameOpenWindowResolver&& aResolve) override;
|
||||
|
||||
virtual mozilla::ipc::IPCResult
|
||||
RecvSyncMessage(const nsString& aMessage,
|
||||
|
|
|
@ -839,8 +839,6 @@ description =
|
|||
description =
|
||||
[PBrowser::GetWidgetRounding]
|
||||
description =
|
||||
[PBrowser::BrowserFrameOpenWindow]
|
||||
description =
|
||||
[PBrowser::RequestNativeKeyBindings]
|
||||
description =
|
||||
[PBrowser::GetTabCount]
|
||||
|
@ -909,8 +907,6 @@ description =
|
|||
description =
|
||||
[PContent::GetGraphicsDeviceInitData]
|
||||
description =
|
||||
[PContent::CreateWindow]
|
||||
description =
|
||||
[PContent::GetAndroidSystemInfo]
|
||||
description =
|
||||
[PContent::UngrabPointer]
|
||||
|
|
Загрузка…
Ссылка в новой задаче