mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
151 lines
3.3 KiB
C
151 lines
3.3 KiB
C
|
#ifndef mozilla__ipdltest_TestSelfManageRoot_h
|
||
|
#define mozilla__ipdltest_TestSelfManageRoot_h 1
|
||
|
|
||
|
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
||
|
|
||
|
#include "mozilla/_ipdltest/PTestSelfManageRootParent.h"
|
||
|
#include "mozilla/_ipdltest/PTestSelfManageRootChild.h"
|
||
|
#include "mozilla/_ipdltest/PTestSelfManageParent.h"
|
||
|
#include "mozilla/_ipdltest/PTestSelfManageChild.h"
|
||
|
|
||
|
|
||
|
namespace mozilla {
|
||
|
namespace _ipdltest {
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Parent side
|
||
|
|
||
|
class TestSelfManageParent :
|
||
|
public PTestSelfManageParent
|
||
|
{
|
||
|
public:
|
||
|
TestSelfManageParent() {
|
||
|
MOZ_COUNT_CTOR(TestSelfManageParent);
|
||
|
}
|
||
|
virtual ~TestSelfManageParent() {
|
||
|
MOZ_COUNT_DTOR(TestSelfManageParent);
|
||
|
}
|
||
|
|
||
|
ActorDestroyReason mWhy;
|
||
|
|
||
|
protected:
|
||
|
NS_OVERRIDE
|
||
|
virtual PTestSelfManageParent* AllocPTestSelfManage() {
|
||
|
return new TestSelfManageParent();
|
||
|
}
|
||
|
|
||
|
NS_OVERRIDE
|
||
|
virtual bool DeallocPTestSelfManage(PTestSelfManageParent* a) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
NS_OVERRIDE
|
||
|
virtual void ActorDestroy(ActorDestroyReason why) {
|
||
|
mWhy = why;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
class TestSelfManageRootParent :
|
||
|
public PTestSelfManageRootParent
|
||
|
{
|
||
|
public:
|
||
|
TestSelfManageRootParent() {
|
||
|
MOZ_COUNT_CTOR(TestSelfManageRootParent);
|
||
|
}
|
||
|
virtual ~TestSelfManageRootParent() {
|
||
|
MOZ_COUNT_DTOR(TestSelfManageRootParent);
|
||
|
}
|
||
|
|
||
|
void Main();
|
||
|
|
||
|
protected:
|
||
|
NS_OVERRIDE
|
||
|
virtual PTestSelfManageParent* AllocPTestSelfManage() {
|
||
|
return new TestSelfManageParent();
|
||
|
}
|
||
|
|
||
|
NS_OVERRIDE
|
||
|
virtual bool DeallocPTestSelfManage(PTestSelfManageParent* a) {
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
NS_OVERRIDE
|
||
|
virtual void ActorDestroy(ActorDestroyReason why)
|
||
|
{
|
||
|
if (NormalShutdown != why)
|
||
|
fail("unexpected destruction!");
|
||
|
passed("ok");
|
||
|
QuitParent();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
//-----------------------------------------------------------------------------
|
||
|
// Child side
|
||
|
|
||
|
class TestSelfManageChild :
|
||
|
public PTestSelfManageChild
|
||
|
{
|
||
|
public:
|
||
|
TestSelfManageChild() {
|
||
|
MOZ_COUNT_CTOR(TestSelfManageChild);
|
||
|
}
|
||
|
virtual ~TestSelfManageChild() {
|
||
|
MOZ_COUNT_DTOR(TestSelfManageChild);
|
||
|
}
|
||
|
|
||
|
protected:
|
||
|
NS_OVERRIDE
|
||
|
virtual PTestSelfManageChild* AllocPTestSelfManage() {
|
||
|
return new TestSelfManageChild();
|
||
|
}
|
||
|
|
||
|
NS_OVERRIDE
|
||
|
virtual bool DeallocPTestSelfManage(PTestSelfManageChild* a) {
|
||
|
delete a;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
NS_OVERRIDE
|
||
|
virtual void ActorDestroy(ActorDestroyReason why) { }
|
||
|
};
|
||
|
|
||
|
class TestSelfManageRootChild :
|
||
|
public PTestSelfManageRootChild
|
||
|
{
|
||
|
public:
|
||
|
TestSelfManageRootChild() {
|
||
|
MOZ_COUNT_CTOR(TestSelfManageRootChild);
|
||
|
}
|
||
|
virtual ~TestSelfManageRootChild() {
|
||
|
MOZ_COUNT_DTOR(TestSelfManageRootChild);
|
||
|
}
|
||
|
|
||
|
void Main();
|
||
|
|
||
|
protected:
|
||
|
NS_OVERRIDE
|
||
|
virtual PTestSelfManageChild* AllocPTestSelfManage() {
|
||
|
return new TestSelfManageChild();
|
||
|
}
|
||
|
|
||
|
NS_OVERRIDE
|
||
|
virtual bool DeallocPTestSelfManage(PTestSelfManageChild* a) {
|
||
|
delete a;
|
||
|
return true;
|
||
|
}
|
||
|
|
||
|
NS_OVERRIDE
|
||
|
virtual void ActorDestroy(ActorDestroyReason why)
|
||
|
{
|
||
|
if (NormalShutdown != why)
|
||
|
fail("unexpected destruction!");
|
||
|
QuitChild();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
} // namespace _ipdltest
|
||
|
} // namespace mozilla
|
||
|
|
||
|
|
||
|
#endif // ifndef mozilla__ipdltest_TestSelfManageRoot_h
|