Back out 7bffc102114e (bug 737437) for Android native talos bustage

This commit is contained in:
Phil Ringnalda 2012-03-29 08:26:58 -07:00
parent bd61180bdc
commit fc2d95cb25
4 changed files with 3 additions and 19 deletions

View File

@ -78,24 +78,14 @@ CompositorParent::Destroy()
NS_ABORT_IF_FALSE(ManagedPLayersParent().Length() == 0,
"CompositorParent destroyed before managed PLayersParent");
// Ensure that the layer manager is destructed on the compositor thread.
// Ensure that the layer manager is destroyed on the compositor thread.
mLayerManager = NULL;
}
bool
CompositorParent::RecvWillStop()
{
mPaused = true;
// Ensure that the layer manager is destroyed before CompositorChild.
mLayerManager->Destroy();
return true;
}
bool
CompositorParent::RecvStop()
{
mPaused = true;
Destroy();
return true;
}

View File

@ -93,7 +93,6 @@ public:
CompositorParent(nsIWidget* aWidget, base::Thread* aCompositorThread);
virtual ~CompositorParent();
virtual bool RecvWillStop() MOZ_OVERRIDE;
virtual bool RecvStop() MOZ_OVERRIDE;
virtual bool RecvPause() MOZ_OVERRIDE;
virtual bool RecvResume() MOZ_OVERRIDE;

View File

@ -61,10 +61,7 @@ rpc protocol PCompositor
parent:
// The child is about to be destroyed, so perform any necessary cleanup.
sync WillStop();
// Clean up in preparation for own destruction.
// Clean up in preparation for destruction.
sync Stop();
// Pause/resume the compositor. These are intended to be used on mobile, when

View File

@ -153,8 +153,6 @@ nsBaseWidget::~nsBaseWidget()
}
if (mCompositorChild) {
mCompositorChild->SendWillStop();
MessageLoop::current()->RunAllPending();
mCompositorChild->Destroy();
delete mCompositorThread;
}