mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
5cccea6f0f
This patch was automatically generated using the following script: function convert() { echo "Converting $1 to $2..." find . \ ! -wholename "*/.git*" \ ! -wholename "obj-ff-dbg*" \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert MOZ_OVERRIDE override convert MOZ_FINAL final
142 lines
3.4 KiB
C++
142 lines
3.4 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:
|
|
virtual PTestSelfManageParent* AllocPTestSelfManageParent() override {
|
|
return new TestSelfManageParent();
|
|
}
|
|
|
|
virtual bool DeallocPTestSelfManageParent(PTestSelfManageParent* a) override {
|
|
return true;
|
|
}
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override {
|
|
mWhy = why;
|
|
}
|
|
};
|
|
|
|
class TestSelfManageRootParent :
|
|
public PTestSelfManageRootParent
|
|
{
|
|
public:
|
|
TestSelfManageRootParent() {
|
|
MOZ_COUNT_CTOR(TestSelfManageRootParent);
|
|
}
|
|
virtual ~TestSelfManageRootParent() {
|
|
MOZ_COUNT_DTOR(TestSelfManageRootParent);
|
|
}
|
|
|
|
static bool RunTestInProcesses() { return true; }
|
|
static bool RunTestInThreads() { return true; }
|
|
|
|
void Main();
|
|
|
|
protected:
|
|
virtual PTestSelfManageParent* AllocPTestSelfManageParent() override {
|
|
return new TestSelfManageParent();
|
|
}
|
|
|
|
virtual bool DeallocPTestSelfManageParent(PTestSelfManageParent* a) override {
|
|
return true;
|
|
}
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override
|
|
{
|
|
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:
|
|
virtual PTestSelfManageChild* AllocPTestSelfManageChild() override {
|
|
return new TestSelfManageChild();
|
|
}
|
|
|
|
virtual bool DeallocPTestSelfManageChild(PTestSelfManageChild* a) override {
|
|
delete a;
|
|
return true;
|
|
}
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override { }
|
|
};
|
|
|
|
class TestSelfManageRootChild :
|
|
public PTestSelfManageRootChild
|
|
{
|
|
public:
|
|
TestSelfManageRootChild() {
|
|
MOZ_COUNT_CTOR(TestSelfManageRootChild);
|
|
}
|
|
virtual ~TestSelfManageRootChild() {
|
|
MOZ_COUNT_DTOR(TestSelfManageRootChild);
|
|
}
|
|
|
|
void Main();
|
|
|
|
protected:
|
|
virtual PTestSelfManageChild* AllocPTestSelfManageChild() override {
|
|
return new TestSelfManageChild();
|
|
}
|
|
|
|
virtual bool DeallocPTestSelfManageChild(PTestSelfManageChild* a) override {
|
|
delete a;
|
|
return true;
|
|
}
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override
|
|
{
|
|
if (NormalShutdown != why)
|
|
fail("unexpected destruction!");
|
|
QuitChild();
|
|
}
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|
|
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestSelfManageRoot_h
|