mirror of
https://github.com/roytam1/palemoon27.git
synced 2026-06-09 18:09:16 +00:00
76 lines
1.8 KiB
C++
76 lines
1.8 KiB
C++
#ifndef mozilla__ipdltest_TestRPC_h
|
|
#define mozilla__ipdltest_TestRPC_h 1
|
|
|
|
#include "mozilla/_ipdltest/IPDLUnitTests.h"
|
|
|
|
#include "mozilla/_ipdltest/PTestRPCParent.h"
|
|
#include "mozilla/_ipdltest/PTestRPCChild.h"
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
class TestRPCParent :
|
|
public PTestRPCParent
|
|
{
|
|
public:
|
|
TestRPCParent();
|
|
virtual ~TestRPCParent();
|
|
|
|
static bool RunTestInProcesses() { return true; }
|
|
static bool RunTestInThreads() { return false; }
|
|
|
|
void Main();
|
|
|
|
bool RecvTest1_Start(uint32_t* aResult) override;
|
|
bool RecvTest1_InnerEvent(uint32_t* aResult) override;
|
|
bool RecvTest2_Start() override;
|
|
bool RecvTest2_Msg2() override;
|
|
bool RecvTest2_FirstUrgent() override;
|
|
bool RecvTest2_SecondUrgent() override;
|
|
bool RecvTest3_Start(uint32_t* aResult) override;
|
|
bool RecvTest3_InnerEvent(uint32_t* aResult) override;
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override
|
|
{
|
|
if (NormalShutdown != why)
|
|
fail("unexpected destruction!");
|
|
passed("ok");
|
|
QuitParent();
|
|
}
|
|
};
|
|
|
|
|
|
class TestRPCChild :
|
|
public PTestRPCChild
|
|
{
|
|
public:
|
|
TestRPCChild();
|
|
virtual ~TestRPCChild();
|
|
|
|
bool RecvStart() override;
|
|
bool RecvTest1_InnerQuery(uint32_t* aResult) override;
|
|
bool RecvTest1_NoReenter(uint32_t* aResult) override;
|
|
bool RecvTest2_Msg1() override;
|
|
bool RecvTest2_Msg3() override;
|
|
bool RecvTest3_WakeUp(uint32_t* aResult) override;
|
|
|
|
virtual void ActorDestroy(ActorDestroyReason why) override
|
|
{
|
|
if (NormalShutdown != why)
|
|
fail("unexpected destruction!");
|
|
QuitChild();
|
|
}
|
|
|
|
private:
|
|
bool reentered_;
|
|
bool resolved_first_cpow_;
|
|
};
|
|
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|
|
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestRPC_h
|