mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
a5df436c2e
CLOSED TREE Backed out changeset 5e8145eff457 (bug 1154231) Backed out changeset 951fb8ed6f25 (bug 1154231)
646 lines
19 KiB
C++
646 lines
19 KiB
C++
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 ts=2 et 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/. */
|
|
|
|
#include "mozilla/layers/CompositorChild.h"
|
|
#include "mozilla/layers/CompositorParent.h"
|
|
#include <stddef.h> // for size_t
|
|
#include "ClientLayerManager.h" // for ClientLayerManager
|
|
#include "base/message_loop.h" // for MessageLoop
|
|
#include "base/task.h" // for NewRunnableMethod, etc
|
|
#include "base/tracked.h" // for FROM_HERE
|
|
#include "mozilla/layers/LayerTransactionChild.h"
|
|
#include "mozilla/layers/PLayerTransactionChild.h"
|
|
#include "mozilla/mozalloc.h" // for operator new, etc
|
|
#include "nsDebug.h" // for NS_RUNTIMEABORT
|
|
#include "nsIObserver.h" // for nsIObserver
|
|
#include "nsISupportsImpl.h" // for MOZ_COUNT_CTOR, etc
|
|
#include "nsTArray.h" // for nsTArray, nsTArray_Impl
|
|
#include "nsXULAppAPI.h" // for XRE_GetIOMessageLoop, etc
|
|
#include "FrameLayerBuilder.h"
|
|
#include "mozilla/dom/TabChild.h"
|
|
#include "mozilla/unused.h"
|
|
#include "mozilla/DebugOnly.h"
|
|
#if defined(XP_WIN)
|
|
#include "WinUtils.h"
|
|
#endif
|
|
|
|
using mozilla::layers::LayerTransactionChild;
|
|
using mozilla::dom::TabChildBase;
|
|
using mozilla::unused;
|
|
|
|
namespace mozilla {
|
|
namespace layers {
|
|
|
|
/*static*/ CompositorChild* CompositorChild::sCompositor;
|
|
|
|
Atomic<int32_t> CompositableForwarder::sSerialCounter(0);
|
|
|
|
CompositorChild::CompositorChild(ClientLayerManager *aLayerManager)
|
|
: mLayerManager(aLayerManager)
|
|
, mCanSend(false)
|
|
{
|
|
}
|
|
|
|
CompositorChild::~CompositorChild()
|
|
{
|
|
if (mCanSend) {
|
|
gfxCriticalError() << "CompositorChild was not deinitialized";
|
|
}
|
|
}
|
|
|
|
static void DeferredDestroyCompositor(nsRefPtr<CompositorParent> aCompositorParent,
|
|
nsRefPtr<CompositorChild> aCompositorChild)
|
|
{
|
|
// Bug 848949 needs to be fixed before
|
|
// we can close the channel properly
|
|
//aCompositorChild->Close();
|
|
}
|
|
|
|
void
|
|
CompositorChild::Destroy()
|
|
{
|
|
// This must not be called from the destructor!
|
|
MOZ_ASSERT(mRefCnt != 0);
|
|
|
|
if (!mCanSend) {
|
|
return;
|
|
}
|
|
|
|
mCanSend = false;
|
|
|
|
// Destroying the layer manager may cause all sorts of things to happen, so
|
|
// let's make sure there is still a reference to keep this alive whatever
|
|
// happens.
|
|
nsRefPtr<CompositorChild> selfRef = this;
|
|
|
|
SendWillStop();
|
|
// The call just made to SendWillStop can result in IPC from the
|
|
// CompositorParent to the CompositorChild (e.g. caused by the destruction
|
|
// of shared memory). We need to ensure this gets processed by the
|
|
// CompositorChild before it gets destroyed. It suffices to ensure that
|
|
// events already in the MessageLoop get processed before the
|
|
// CompositorChild is destroyed, so we add a task to the MessageLoop to
|
|
// handle compositor desctruction.
|
|
|
|
// From now on the only message we can send is Stop.
|
|
|
|
if (mLayerManager) {
|
|
mLayerManager->Destroy();
|
|
mLayerManager = nullptr;
|
|
}
|
|
|
|
// start from the end of the array because Destroy() can cause the
|
|
// LayerTransactionChild to be removed from the array.
|
|
for (int i = ManagedPLayerTransactionChild().Length() - 1; i >= 0; --i) {
|
|
RefPtr<LayerTransactionChild> layers =
|
|
static_cast<LayerTransactionChild*>(ManagedPLayerTransactionChild()[i]);
|
|
layers->Destroy();
|
|
}
|
|
|
|
SendStop();
|
|
|
|
// The DeferredDestroyCompositor task takes ownership of compositorParent and
|
|
// will release them when it runs.
|
|
MessageLoop::current()->PostTask(FROM_HERE,
|
|
NewRunnableFunction(DeferredDestroyCompositor, mCompositorParent, selfRef));
|
|
}
|
|
|
|
bool
|
|
CompositorChild::LookupCompositorFrameMetrics(const FrameMetrics::ViewID aId,
|
|
FrameMetrics& aFrame)
|
|
{
|
|
SharedFrameMetricsData* data = mFrameMetricsTable.Get(aId);
|
|
if (data) {
|
|
data->CopyFrameMetrics(&aFrame);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
/*static*/ PCompositorChild*
|
|
CompositorChild::Create(Transport* aTransport, ProcessId aOtherPid)
|
|
{
|
|
// There's only one compositor per child process.
|
|
MOZ_ASSERT(!sCompositor);
|
|
|
|
nsRefPtr<CompositorChild> child(new CompositorChild(nullptr));
|
|
if (!child->Open(aTransport, aOtherPid, XRE_GetIOMessageLoop(), ipc::ChildSide)) {
|
|
NS_RUNTIMEABORT("Couldn't Open() Compositor channel.");
|
|
return nullptr;
|
|
}
|
|
|
|
child->mCanSend = true;
|
|
|
|
// We release this ref in ActorDestroy().
|
|
sCompositor = child.forget().take();
|
|
|
|
int32_t width;
|
|
int32_t height;
|
|
sCompositor->SendGetTileSize(&width, &height);
|
|
gfxPlatform::GetPlatform()->SetTileSize(width, height);
|
|
|
|
// We release this ref in ActorDestroy().
|
|
return sCompositor;
|
|
}
|
|
|
|
bool
|
|
CompositorChild::OpenSameProcess(CompositorParent* aParent)
|
|
{
|
|
MOZ_ASSERT(aParent);
|
|
|
|
mCompositorParent = aParent;
|
|
mCanSend = Open(mCompositorParent->GetIPCChannel(),
|
|
CompositorParent::CompositorLoop(),
|
|
ipc::ChildSide);
|
|
return mCanSend;
|
|
}
|
|
|
|
/*static*/ CompositorChild*
|
|
CompositorChild::Get()
|
|
{
|
|
// This is only expected to be used in child processes.
|
|
MOZ_ASSERT(XRE_GetProcessType() != GeckoProcessType_Default);
|
|
return sCompositor;
|
|
}
|
|
|
|
PLayerTransactionChild*
|
|
CompositorChild::AllocPLayerTransactionChild(const nsTArray<LayersBackend>& aBackendHints,
|
|
const uint64_t& aId,
|
|
TextureFactoryIdentifier*,
|
|
bool*)
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
LayerTransactionChild* c = new LayerTransactionChild(aId);
|
|
c->AddIPDLReference();
|
|
return c;
|
|
}
|
|
|
|
/*static*/ PLDHashOperator
|
|
CompositorChild::RemoveSharedMetricsForLayersId(const uint64_t& aKey,
|
|
nsAutoPtr<SharedFrameMetricsData>& aData,
|
|
void* aLayerTransactionChild)
|
|
{
|
|
uint64_t childId = static_cast<LayerTransactionChild*>(aLayerTransactionChild)->GetId();
|
|
if (aData->GetLayersId() == childId) {
|
|
return PLDHashOperator::PL_DHASH_REMOVE;
|
|
}
|
|
return PLDHashOperator::PL_DHASH_NEXT;
|
|
}
|
|
|
|
bool
|
|
CompositorChild::DeallocPLayerTransactionChild(PLayerTransactionChild* actor)
|
|
{
|
|
mFrameMetricsTable.Enumerate(RemoveSharedMetricsForLayersId, actor);
|
|
static_cast<LayerTransactionChild*>(actor)->ReleaseIPDLReference();
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
CompositorChild::RecvInvalidateAll()
|
|
{
|
|
if (mLayerManager) {
|
|
FrameLayerBuilder::InvalidateAllLayers(mLayerManager);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
#if defined(XP_WIN) || defined(MOZ_WIDGET_GTK)
|
|
static void CalculatePluginClip(const gfx::IntRect& aBounds,
|
|
const nsTArray<gfx::IntRect>& aPluginClipRects,
|
|
const nsIntPoint& aContentOffset,
|
|
const nsIntRegion& aParentLayerVisibleRegion,
|
|
nsTArray<gfx::IntRect>& aResult,
|
|
gfx::IntRect& aVisibleBounds,
|
|
bool& aPluginIsVisible)
|
|
{
|
|
aPluginIsVisible = true;
|
|
// aBounds (content origin)
|
|
nsIntRegion contentVisibleRegion(aBounds);
|
|
// aPluginClipRects (plugin widget origin)
|
|
for (uint32_t idx = 0; idx < aPluginClipRects.Length(); idx++) {
|
|
gfx::IntRect rect = aPluginClipRects[idx];
|
|
// shift to content origin
|
|
rect.MoveBy(aBounds.x, aBounds.y);
|
|
contentVisibleRegion.AndWith(rect);
|
|
}
|
|
// apply layers clip (window origin)
|
|
nsIntRegion region = aParentLayerVisibleRegion;
|
|
region.MoveBy(-aContentOffset.x, -aContentOffset.y);
|
|
contentVisibleRegion.AndWith(region);
|
|
if (contentVisibleRegion.IsEmpty()) {
|
|
aPluginIsVisible = false;
|
|
return;
|
|
}
|
|
// shift to plugin widget origin
|
|
contentVisibleRegion.MoveBy(-aBounds.x, -aBounds.y);
|
|
nsIntRegionRectIterator iter(contentVisibleRegion);
|
|
for (const gfx::IntRect* rgnRect = iter.Next(); rgnRect; rgnRect = iter.Next()) {
|
|
aResult.AppendElement(*rgnRect);
|
|
aVisibleBounds.UnionRect(aVisibleBounds, *rgnRect);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
bool
|
|
CompositorChild::RecvUpdatePluginConfigurations(const nsIntPoint& aContentOffset,
|
|
const nsIntRegion& aParentLayerVisibleRegion,
|
|
nsTArray<PluginWindowData>&& aPlugins)
|
|
{
|
|
#if !defined(XP_WIN) && !defined(MOZ_WIDGET_GTK)
|
|
NS_NOTREACHED("CompositorChild::RecvUpdatePluginConfigurations calls "
|
|
"unexpected on this platform.");
|
|
return false;
|
|
#else
|
|
// Now that we are on the main thread, update plugin widget config.
|
|
// This should happen a little before we paint to the screen assuming
|
|
// the main thread is running freely.
|
|
DebugOnly<nsresult> rv;
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
|
|
// Tracks visible plugins we update, so we can hide any plugins we don't.
|
|
nsTArray<uintptr_t> visiblePluginIds;
|
|
|
|
for (uint32_t pluginsIdx = 0; pluginsIdx < aPlugins.Length(); pluginsIdx++) {
|
|
nsIWidget* widget =
|
|
nsIWidget::LookupRegisteredPluginWindow(aPlugins[pluginsIdx].windowId());
|
|
if (!widget) {
|
|
NS_WARNING("Unexpected, plugin id not found!");
|
|
continue;
|
|
}
|
|
bool isVisible = aPlugins[pluginsIdx].visible();
|
|
if (widget && !widget->Destroyed()) {
|
|
gfx::IntRect bounds;
|
|
gfx::IntRect visibleBounds;
|
|
// If the plugin is visible update it's geometry.
|
|
if (isVisible) {
|
|
// bounds (content origin) - don't pass true to Resize, it triggers a
|
|
// sync paint update to the plugin process on Windows, which happens
|
|
// prior to clipping information being applied.
|
|
bounds = aPlugins[pluginsIdx].bounds();
|
|
rv = widget->Resize(aContentOffset.x + bounds.x,
|
|
aContentOffset.y + bounds.y,
|
|
bounds.width, bounds.height, false);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "widget call failure");
|
|
nsTArray<gfx::IntRect> rectsOut;
|
|
// This call may change the value of isVisible
|
|
CalculatePluginClip(bounds, aPlugins[pluginsIdx].clip(),
|
|
aContentOffset, aParentLayerVisibleRegion,
|
|
rectsOut, visibleBounds, isVisible);
|
|
// content clipping region (widget origin)
|
|
rv = widget->SetWindowClipRegion(rectsOut, false);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "widget call failure");
|
|
}
|
|
|
|
rv = widget->Enable(isVisible);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "widget call failure");
|
|
|
|
// visible state - updated after clipping, prior to invalidating
|
|
rv = widget->Show(isVisible);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "widget call failure");
|
|
|
|
// Handle invalidation, this can be costly, avoid if it is not needed.
|
|
if (isVisible) {
|
|
// invalidate region (widget origin)
|
|
gfx::IntRect bounds = aPlugins[pluginsIdx].bounds();
|
|
gfx::IntRect rect(0, 0, bounds.width, bounds.height);
|
|
#if defined(XP_WIN)
|
|
// Work around for flash's crummy sandbox. See bug 762948. This call
|
|
// digs down into the window hirearchy, invalidating regions on
|
|
// windows owned by other processes.
|
|
mozilla::widget::WinUtils::InvalidatePluginAsWorkaround(widget, visibleBounds);
|
|
#else
|
|
rv = widget->Invalidate(visibleBounds);
|
|
NS_ASSERTION(NS_SUCCEEDED(rv), "widget call failure");
|
|
#endif
|
|
visiblePluginIds.AppendElement(aPlugins[pluginsIdx].windowId());
|
|
}
|
|
}
|
|
}
|
|
// Any plugins we didn't update need to be hidden, as they are
|
|
// not associated with visible content.
|
|
nsIWidget::UpdateRegisteredPluginWindowVisibility(visiblePluginIds);
|
|
return true;
|
|
#endif // !defined(XP_WIN) && !defined(MOZ_WIDGET_GTK)
|
|
}
|
|
|
|
bool
|
|
CompositorChild::RecvUpdatePluginVisibility(nsTArray<uintptr_t>&& aVisibleIdList)
|
|
{
|
|
#if !defined(XP_WIN) && !defined(MOZ_WIDGET_GTK)
|
|
NS_NOTREACHED("CompositorChild::RecvUpdatePluginVisibility calls "
|
|
"unexpected on this platform.");
|
|
return false;
|
|
#else
|
|
MOZ_ASSERT(NS_IsMainThread());
|
|
nsIWidget::UpdateRegisteredPluginWindowVisibility(aVisibleIdList);
|
|
return true;
|
|
#endif // !defined(XP_WIN) && !defined(MOZ_WIDGET_GTK)
|
|
}
|
|
|
|
bool
|
|
CompositorChild::RecvDidComposite(const uint64_t& aId, const uint64_t& aTransactionId)
|
|
{
|
|
if (mLayerManager) {
|
|
MOZ_ASSERT(aId == 0);
|
|
mLayerManager->DidComposite(aTransactionId);
|
|
} else if (aId != 0) {
|
|
dom::TabChild *child = dom::TabChild::GetFrom(aId);
|
|
if (child) {
|
|
child->DidComposite(aTransactionId);
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
CompositorChild::RecvOverfill(const uint32_t &aOverfill)
|
|
{
|
|
for (size_t i = 0; i < mOverfillObservers.Length(); i++) {
|
|
mOverfillObservers[i]->RunOverfillCallback(aOverfill);
|
|
}
|
|
mOverfillObservers.Clear();
|
|
return true;
|
|
}
|
|
|
|
void
|
|
CompositorChild::AddOverfillObserver(ClientLayerManager* aLayerManager)
|
|
{
|
|
MOZ_ASSERT(aLayerManager);
|
|
mOverfillObservers.AppendElement(aLayerManager);
|
|
}
|
|
|
|
void
|
|
CompositorChild::ActorDestroy(ActorDestroyReason aWhy)
|
|
{
|
|
MOZ_ASSERT(!mCanSend);
|
|
MOZ_ASSERT(sCompositor == this);
|
|
|
|
#ifdef MOZ_B2G
|
|
// Due to poor lifetime management of gralloc (and possibly shmems) we will
|
|
// crash at some point in the future when we get destroyed due to abnormal
|
|
// shutdown. Its better just to crash here. On desktop though, we have a chance
|
|
// of recovering.
|
|
if (aWhy == AbnormalShutdown) {
|
|
NS_RUNTIMEABORT("ActorDestroy by IPC channel failure at CompositorChild");
|
|
}
|
|
#endif
|
|
|
|
MessageLoop::current()->PostTask(
|
|
FROM_HERE,
|
|
NewRunnableMethod(this, &CompositorChild::Release));
|
|
}
|
|
|
|
bool
|
|
CompositorChild::RecvSharedCompositorFrameMetrics(
|
|
const mozilla::ipc::SharedMemoryBasic::Handle& metrics,
|
|
const CrossProcessMutexHandle& handle,
|
|
const uint64_t& aLayersId,
|
|
const uint32_t& aAPZCId)
|
|
{
|
|
SharedFrameMetricsData* data = new SharedFrameMetricsData(
|
|
metrics, handle, aLayersId, aAPZCId);
|
|
mFrameMetricsTable.Put(data->GetViewID(), data);
|
|
return true;
|
|
}
|
|
|
|
bool
|
|
CompositorChild::RecvReleaseSharedCompositorFrameMetrics(
|
|
const ViewID& aId,
|
|
const uint32_t& aAPZCId)
|
|
{
|
|
SharedFrameMetricsData* data = mFrameMetricsTable.Get(aId);
|
|
// The SharedFrameMetricsData may have been removed previously if
|
|
// a SharedFrameMetricsData with the same ViewID but later APZCId had
|
|
// been store and over wrote it.
|
|
if (data && (data->GetAPZCId() == aAPZCId)) {
|
|
mFrameMetricsTable.Remove(aId);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
CompositorChild::SharedFrameMetricsData::SharedFrameMetricsData(
|
|
const ipc::SharedMemoryBasic::Handle& metrics,
|
|
const CrossProcessMutexHandle& handle,
|
|
const uint64_t& aLayersId,
|
|
const uint32_t& aAPZCId)
|
|
: mMutex(nullptr)
|
|
, mLayersId(aLayersId)
|
|
, mAPZCId(aAPZCId)
|
|
{
|
|
mBuffer = new ipc::SharedMemoryBasic(metrics);
|
|
mBuffer->Map(sizeof(FrameMetrics));
|
|
mMutex = new CrossProcessMutex(handle);
|
|
MOZ_COUNT_CTOR(SharedFrameMetricsData);
|
|
}
|
|
|
|
CompositorChild::SharedFrameMetricsData::~SharedFrameMetricsData()
|
|
{
|
|
// When the hash table deletes the class, delete
|
|
// the shared memory and mutex.
|
|
delete mMutex;
|
|
mBuffer = nullptr;
|
|
MOZ_COUNT_DTOR(SharedFrameMetricsData);
|
|
}
|
|
|
|
void
|
|
CompositorChild::SharedFrameMetricsData::CopyFrameMetrics(FrameMetrics* aFrame)
|
|
{
|
|
FrameMetrics* frame = static_cast<FrameMetrics*>(mBuffer->memory());
|
|
MOZ_ASSERT(frame);
|
|
mMutex->Lock();
|
|
*aFrame = *frame;
|
|
mMutex->Unlock();
|
|
}
|
|
|
|
FrameMetrics::ViewID
|
|
CompositorChild::SharedFrameMetricsData::GetViewID()
|
|
{
|
|
FrameMetrics* frame = static_cast<FrameMetrics*>(mBuffer->memory());
|
|
MOZ_ASSERT(frame);
|
|
// Not locking to read of mScrollId since it should not change after being
|
|
// initially set.
|
|
return frame->GetScrollId();
|
|
}
|
|
|
|
uint64_t
|
|
CompositorChild::SharedFrameMetricsData::GetLayersId() const
|
|
{
|
|
return mLayersId;
|
|
}
|
|
|
|
uint32_t
|
|
CompositorChild::SharedFrameMetricsData::GetAPZCId()
|
|
{
|
|
return mAPZCId;
|
|
}
|
|
|
|
|
|
bool
|
|
CompositorChild::RecvRemotePaintIsReady()
|
|
{
|
|
// Used on the content thread, this bounces the message to the
|
|
// TabParent (via the TabChild) if the notification was previously requested.
|
|
// XPCOM gives a soup of compiler errors when trying to do_QueryReference
|
|
// so I'm using static_cast<>
|
|
MOZ_LAYERS_LOG(("[RemoteGfx] CompositorChild received RemotePaintIsReady"));
|
|
nsRefPtr<nsISupports> iTabChildBase(do_QueryReferent(mWeakTabChild));
|
|
if (!iTabChildBase) {
|
|
MOZ_LAYERS_LOG(("[RemoteGfx] Note: TabChild was released before RemotePaintIsReady. "
|
|
"MozAfterRemotePaint will not be sent to listener."));
|
|
return true;
|
|
}
|
|
TabChildBase* tabChildBase = static_cast<TabChildBase*>(iTabChildBase.get());
|
|
TabChild* tabChild = static_cast<TabChild*>(tabChildBase);
|
|
MOZ_ASSERT(tabChild);
|
|
unused << tabChild->SendRemotePaintIsReady();
|
|
mWeakTabChild = nullptr;
|
|
return true;
|
|
}
|
|
|
|
|
|
void
|
|
CompositorChild::RequestNotifyAfterRemotePaint(TabChild* aTabChild)
|
|
{
|
|
MOZ_ASSERT(aTabChild, "NULL TabChild not allowed in CompositorChild::RequestNotifyAfterRemotePaint");
|
|
mWeakTabChild = do_GetWeakReference( static_cast<dom::TabChildBase*>(aTabChild) );
|
|
unused << SendRequestNotifyAfterRemotePaint();
|
|
}
|
|
|
|
void
|
|
CompositorChild::CancelNotifyAfterRemotePaint(TabChild* aTabChild)
|
|
{
|
|
nsRefPtr<nsISupports> iTabChildBase(do_QueryReferent(mWeakTabChild));
|
|
if (!iTabChildBase) {
|
|
return;
|
|
}
|
|
TabChildBase* tabChildBase = static_cast<TabChildBase*>(iTabChildBase.get());
|
|
TabChild* tabChild = static_cast<TabChild*>(tabChildBase);
|
|
if (tabChild == aTabChild) {
|
|
mWeakTabChild = nullptr;
|
|
}
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendWillStop()
|
|
{
|
|
return PCompositorChild::SendWillStop();
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendPause()
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendPause();
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendResume()
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendResume();
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendNotifyChildCreated(const uint64_t& id)
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendNotifyChildCreated(id);
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendAdoptChild(const uint64_t& id)
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendAdoptChild(id);
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendMakeSnapshot(const SurfaceDescriptor& inSnapshot, const gfx::IntRect& dirtyRect)
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendMakeSnapshot(inSnapshot, dirtyRect);
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendFlushRendering()
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendFlushRendering();
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendGetTileSize(int32_t* tileWidth, int32_t* tileHeight)
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendGetTileSize(tileWidth, tileHeight);
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendStartFrameTimeRecording(const int32_t& bufferSize, uint32_t* startIndex)
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendStartFrameTimeRecording(bufferSize, startIndex);
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendStopFrameTimeRecording(const uint32_t& startIndex, nsTArray<float>* intervals)
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendStopFrameTimeRecording(startIndex, intervals);
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendNotifyRegionInvalidated(const nsIntRegion& region)
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendNotifyRegionInvalidated(region);
|
|
}
|
|
|
|
bool
|
|
CompositorChild::SendRequestNotifyAfterRemotePaint()
|
|
{
|
|
MOZ_ASSERT(mCanSend);
|
|
if (!mCanSend) {
|
|
return true;
|
|
}
|
|
return PCompositorChild::SendRequestNotifyAfterRemotePaint();
|
|
}
|
|
|
|
|
|
} // namespace layers
|
|
} // namespace mozilla
|
|
|