summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/TestSelfManageRoot.h
diff options
context:
space:
mode:
authorMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
committerMatt A. Tobin <mattatobin@localhost.localdomain>2018-02-02 04:16:08 -0500
commit5f8de423f190bbb79a62f804151bc24824fa32d8 (patch)
tree10027f336435511475e392454359edea8e25895d /ipc/ipdl/test/cxx/TestSelfManageRoot.h
parent49ee0794b5d912db1f95dce6eb52d781dc210db5 (diff)
downloadUXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.gz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.lz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.tar.xz
UXP-5f8de423f190bbb79a62f804151bc24824fa32d8.zip
Add m-esr52 at 52.6.0
Diffstat (limited to 'ipc/ipdl/test/cxx/TestSelfManageRoot.h')
-rw-r--r--ipc/ipdl/test/cxx/TestSelfManageRoot.h141
1 files changed, 141 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/TestSelfManageRoot.h b/ipc/ipdl/test/cxx/TestSelfManageRoot.h
new file mode 100644
index 000000000..2a94fa392
--- /dev/null
+++ b/ipc/ipdl/test/cxx/TestSelfManageRoot.h
@@ -0,0 +1,141 @@
+#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