summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestBadActor.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestBadActor.ipdl')
-rw-r--r--ipc/ipdl/test/cxx/PTestBadActor.ipdl21
1 files changed, 0 insertions, 21 deletions
diff --git a/ipc/ipdl/test/cxx/PTestBadActor.ipdl b/ipc/ipdl/test/cxx/PTestBadActor.ipdl
deleted file mode 100644
index 991e6eb945..0000000000
--- a/ipc/ipdl/test/cxx/PTestBadActor.ipdl
+++ /dev/null
@@ -1,21 +0,0 @@
-include protocol PTestBadActorSub;
-
-include "mozilla/_ipdltest/TestBadActor.h";
-
-namespace mozilla {
-namespace _ipdltest {
-
-// Test that a parent sending a reentrant __delete__ message
-// is not killed if a child's message races with the reply.
-
-[ManualDealloc, ChildImpl="TestBadActorChild", ParentImpl="TestBadActorParent"]
-intr protocol PTestBadActor {
- manages PTestBadActorSub;
-
-child:
- async PTestBadActorSub();
- async __delete__();
-};
-
-} // namespace _ipdltest
-} // namespace mozilla