mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-06 07:48:38 +09:00
parent
f75592fd13
commit
9b1124ccbd
99 changed files with 6 additions and 15647 deletions
|
|
@ -171,7 +171,6 @@
|
|||
#include "GMPServiceChild.h"
|
||||
#include "gfxPlatform.h"
|
||||
#include "nscore.h" // for NS_FREE_PERMANENT_DATA
|
||||
#include "VRManagerChild.h"
|
||||
|
||||
using namespace mozilla;
|
||||
using namespace mozilla::docshell;
|
||||
|
|
@ -1148,7 +1147,6 @@ ContentChild::RecvGMPsChanged(nsTArray<GMPCapabilityData>&& capabilities)
|
|||
bool
|
||||
ContentChild::RecvInitRendering(Endpoint<PCompositorBridgeChild>&& aCompositor,
|
||||
Endpoint<PImageBridgeChild>&& aImageBridge,
|
||||
Endpoint<PVRManagerChild>&& aVRBridge,
|
||||
Endpoint<PVideoDecoderManagerChild>&& aVideoManager)
|
||||
{
|
||||
if (!CompositorBridgeChild::InitForContent(Move(aCompositor))) {
|
||||
|
|
@ -1157,9 +1155,6 @@ ContentChild::RecvInitRendering(Endpoint<PCompositorBridgeChild>&& aCompositor,
|
|||
if (!ImageBridgeChild::InitForContent(Move(aImageBridge))) {
|
||||
return false;
|
||||
}
|
||||
if (!gfx::VRManagerChild::InitForContent(Move(aVRBridge))) {
|
||||
return false;
|
||||
}
|
||||
VideoDecoderManagerChild::InitForContent(Move(aVideoManager));
|
||||
return true;
|
||||
}
|
||||
|
|
@ -1167,7 +1162,6 @@ ContentChild::RecvInitRendering(Endpoint<PCompositorBridgeChild>&& aCompositor,
|
|||
bool
|
||||
ContentChild::RecvReinitRendering(Endpoint<PCompositorBridgeChild>&& aCompositor,
|
||||
Endpoint<PImageBridgeChild>&& aImageBridge,
|
||||
Endpoint<PVRManagerChild>&& aVRBridge,
|
||||
Endpoint<PVideoDecoderManagerChild>&& aVideoManager)
|
||||
{
|
||||
nsTArray<RefPtr<TabChild>> tabs = TabChild::GetAll();
|
||||
|
|
@ -1186,9 +1180,6 @@ ContentChild::RecvReinitRendering(Endpoint<PCompositorBridgeChild>&& aCompositor
|
|||
if (!ImageBridgeChild::ReinitForContent(Move(aImageBridge))) {
|
||||
return false;
|
||||
}
|
||||
if (!gfx::VRManagerChild::ReinitForContent(Move(aVRBridge))) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Establish new PLayerTransactions.
|
||||
for (const auto& tabChild : tabs) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue