summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/gtest/PTestDescendant.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/gtest/PTestDescendant.ipdl')
-rw-r--r--ipc/ipdl/test/gtest/PTestDescendant.ipdl22
1 files changed, 22 insertions, 0 deletions
diff --git a/ipc/ipdl/test/gtest/PTestDescendant.ipdl b/ipc/ipdl/test/gtest/PTestDescendant.ipdl
new file mode 100644
index 0000000000..b8524babab
--- /dev/null
+++ b/ipc/ipdl/test/gtest/PTestDescendant.ipdl
@@ -0,0 +1,22 @@
+include protocol PTestDescendantSub;
+include protocol PTestDescendantSubsub;
+
+namespace mozilla {
+namespace _ipdltest {
+
+[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
+async protocol PTestDescendant {
+ manages PTestDescendantSub;
+child:
+ async PTestDescendantSub(nullable PTestDescendantSubsub dummy);
+
+ async Test(PTestDescendantSubsub a);
+
+ async __delete__();
+
+parent:
+ async Ok(PTestDescendantSubsub a);
+};
+
+}
+}