summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestDesc.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestDesc.ipdl')
-rw-r--r--ipc/ipdl/test/cxx/PTestDesc.ipdl24
1 files changed, 0 insertions, 24 deletions
diff --git a/ipc/ipdl/test/cxx/PTestDesc.ipdl b/ipc/ipdl/test/cxx/PTestDesc.ipdl
deleted file mode 100644
index d18d2d8598..0000000000
--- a/ipc/ipdl/test/cxx/PTestDesc.ipdl
+++ /dev/null
@@ -1,24 +0,0 @@
-include protocol PTestDescSub;
-include protocol PTestDescSubsub;
-
-include "mozilla/_ipdltest/TestDesc.h";
-
-namespace mozilla {
-namespace _ipdltest {
-
-[ManualDealloc, ChildImpl="TestDescChild", ParentImpl="TestDescParent"]
-intr protocol PTestDesc {
- manages PTestDescSub;
-child:
- [LegacyIntr] intr PTestDescSub(nullable PTestDescSubsub dummy);
-
- async Test(PTestDescSubsub a);
-
- async __delete__();
-
-parent:
- async Ok(PTestDescSubsub a);
-};
-
-}
-}