gecko/ipc/ipdl/test/cxx/TestManyChildAllocs.h
Joshua Cranmer 4ad48824ad Bug 702877 - Replace NS_OVERRIDE with MOZ_OVERRIDE. r=ehsan
--HG--
extra : rebase_source : 1843575683c3897f96f3966cbce26140ff1a7d90
2012-07-06 13:15:45 -05:00

94 lines
2.3 KiB
C++

#ifndef mozilla__ipdltest_TestManyChildAllocs_h
#define mozilla__ipdltest_TestManyChildAllocs_h 1
#include "mozilla/_ipdltest/IPDLUnitTests.h"
#include "mozilla/_ipdltest/PTestManyChildAllocsParent.h"
#include "mozilla/_ipdltest/PTestManyChildAllocsChild.h"
#include "mozilla/_ipdltest/PTestManyChildAllocsSubParent.h"
#include "mozilla/_ipdltest/PTestManyChildAllocsSubChild.h"
namespace mozilla {
namespace _ipdltest {
// top-level protocol
class TestManyChildAllocsParent :
public PTestManyChildAllocsParent
{
public:
TestManyChildAllocsParent();
virtual ~TestManyChildAllocsParent();
static bool RunTestInProcesses() { return true; }
static bool RunTestInThreads() { return true; }
void Main();
protected:
virtual bool RecvDone() MOZ_OVERRIDE;
virtual bool DeallocPTestManyChildAllocsSub(PTestManyChildAllocsSubParent* __a) MOZ_OVERRIDE;
virtual PTestManyChildAllocsSubParent* AllocPTestManyChildAllocsSub() MOZ_OVERRIDE;
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE
{
if (NormalShutdown != why)
fail("unexpected destruction!");
passed("ok");
QuitParent();
}
};
class TestManyChildAllocsChild :
public PTestManyChildAllocsChild
{
public:
TestManyChildAllocsChild();
virtual ~TestManyChildAllocsChild();
protected:
virtual bool RecvGo() MOZ_OVERRIDE;
virtual bool DeallocPTestManyChildAllocsSub(PTestManyChildAllocsSubChild* __a) MOZ_OVERRIDE;
virtual PTestManyChildAllocsSubChild* AllocPTestManyChildAllocsSub() MOZ_OVERRIDE;
virtual void ActorDestroy(ActorDestroyReason why) MOZ_OVERRIDE
{
if (NormalShutdown != why)
fail("unexpected destruction!");
QuitChild();
}
};
// do-nothing sub-protocol actors
class TestManyChildAllocsSubParent :
public PTestManyChildAllocsSubParent
{
public:
TestManyChildAllocsSubParent() { }
virtual ~TestManyChildAllocsSubParent() { }
protected:
virtual bool RecvHello() MOZ_OVERRIDE { return true; }
};
class TestManyChildAllocsSubChild :
public PTestManyChildAllocsSubChild
{
public:
TestManyChildAllocsSubChild() { }
virtual ~TestManyChildAllocsSubChild() { }
};
} // namepsace _ipdltest
} // namespace mozilla
#endif // ifndef mozilla__ipdltest_TestManyChildAllocs_h