mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-30 21:55:31 +00:00
883849ee32
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
111 lines
2.9 KiB
C++
111 lines
2.9 KiB
C++
#ifndef mozilla__ipdltest_TestActorPunning_h
|
|
#define mozilla__ipdltest_TestActorPunning_h 1
|
|
|
|
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
|
|
|
#include "mozilla/_ipdltest/PTestActorPunningParent.h"
|
|
#include "mozilla/_ipdltest/PTestActorPunningPunnedParent.h"
|
|
#include "mozilla/_ipdltest/PTestActorPunningSubParent.h"
|
|
#include "mozilla/_ipdltest/PTestActorPunningChild.h"
|
|
#include "mozilla/_ipdltest/PTestActorPunningPunnedChild.h"
|
|
#include "mozilla/_ipdltest/PTestActorPunningSubChild.h"
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
class TestActorPunningParent :
|
|
public PTestActorPunningParent
|
|
{
|
|
public:
|
|
static bool RunTestInProcesses() { return true; }
|
|
static bool RunTestInThreads() { return false; }
|
|
|
|
void Main();
|
|
|
|
protected:
|
|
PTestActorPunningPunnedParent* AllocPTestActorPunningPunnedParent() override;
|
|
bool DeallocPTestActorPunningPunnedParent(PTestActorPunningPunnedParent* a) override;
|
|
|
|
PTestActorPunningSubParent* AllocPTestActorPunningSubParent() override;
|
|
bool DeallocPTestActorPunningSubParent(PTestActorPunningSubParent* a) override;
|
|
|
|
virtual bool RecvPun(PTestActorPunningSubParent* a, const Bad& bad) override;
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override
|
|
{
|
|
if (NormalShutdown == why)
|
|
fail("should have died from error!");
|
|
passed("ok");
|
|
QuitParent();
|
|
}
|
|
};
|
|
|
|
class TestActorPunningPunnedParent :
|
|
public PTestActorPunningPunnedParent
|
|
{
|
|
public:
|
|
TestActorPunningPunnedParent() {}
|
|
virtual ~TestActorPunningPunnedParent() {}
|
|
protected:
|
|
virtual void ActorDestroy(ActorDestroyReason why) override {}
|
|
};
|
|
|
|
class TestActorPunningSubParent :
|
|
public PTestActorPunningSubParent
|
|
{
|
|
public:
|
|
TestActorPunningSubParent() {}
|
|
virtual ~TestActorPunningSubParent() {}
|
|
protected:
|
|
virtual void ActorDestroy(ActorDestroyReason why) override {}
|
|
};
|
|
|
|
|
|
class TestActorPunningChild :
|
|
public PTestActorPunningChild
|
|
{
|
|
public:
|
|
TestActorPunningChild() {}
|
|
virtual ~TestActorPunningChild() {}
|
|
|
|
protected:
|
|
PTestActorPunningPunnedChild* AllocPTestActorPunningPunnedChild() override;
|
|
bool DeallocPTestActorPunningPunnedChild(PTestActorPunningPunnedChild* a) override;
|
|
|
|
PTestActorPunningSubChild* AllocPTestActorPunningSubChild() override;
|
|
bool DeallocPTestActorPunningSubChild(PTestActorPunningSubChild* a) override;
|
|
|
|
virtual bool RecvStart() override;
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override
|
|
{
|
|
fail("should have been killed off!");
|
|
}
|
|
};
|
|
|
|
class TestActorPunningPunnedChild :
|
|
public PTestActorPunningPunnedChild
|
|
{
|
|
public:
|
|
TestActorPunningPunnedChild() {}
|
|
virtual ~TestActorPunningPunnedChild() {}
|
|
};
|
|
|
|
class TestActorPunningSubChild :
|
|
public PTestActorPunningSubChild
|
|
{
|
|
public:
|
|
TestActorPunningSubChild() {}
|
|
virtual ~TestActorPunningSubChild() {}
|
|
|
|
virtual bool RecvBad() override;
|
|
};
|
|
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|
|
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestActorPunning_h
|