mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
45 lines
771 B
C++
45 lines
771 B
C++
#ifndef mozilla__ipdltest_TestSanity_h
|
|
#define mozilla__ipdltest_TestSanity_h 1
|
|
|
|
|
|
#include "mozilla/_ipdltest/PTestSanityParent.h"
|
|
#include "mozilla/_ipdltest/PTestSanityChild.h"
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
class TestSanityParent :
|
|
public PTestSanityParent
|
|
{
|
|
public:
|
|
TestSanityParent();
|
|
virtual ~TestSanityParent();
|
|
|
|
void Main();
|
|
|
|
protected:
|
|
virtual bool RecvPong(const int& one);
|
|
virtual bool RecvUNREACHED();
|
|
};
|
|
|
|
|
|
class TestSanityChild :
|
|
public PTestSanityChild
|
|
{
|
|
public:
|
|
TestSanityChild();
|
|
virtual ~TestSanityChild();
|
|
|
|
protected:
|
|
virtual bool RecvPing(const int& zero);
|
|
virtual bool RecvUNREACHED();
|
|
};
|
|
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|
|
|
|
|
|
#endif // ifndef mozilla__ipdltest_TestSanity_h
|