summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/gtest/PTestMultiMgrs.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/gtest/PTestMultiMgrs.ipdl')
-rw-r--r--ipc/ipdl/test/gtest/PTestMultiMgrs.ipdl23
1 files changed, 23 insertions, 0 deletions
diff --git a/ipc/ipdl/test/gtest/PTestMultiMgrs.ipdl b/ipc/ipdl/test/gtest/PTestMultiMgrs.ipdl
new file mode 100644
index 0000000000..80de57459d
--- /dev/null
+++ b/ipc/ipdl/test/gtest/PTestMultiMgrs.ipdl
@@ -0,0 +1,23 @@
+include protocol PTestMultiMgrsLeft;
+include protocol PTestMultiMgrsRight;
+
+namespace mozilla {
+namespace _ipdltest {
+
+[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
+protocol PTestMultiMgrs {
+ manages PTestMultiMgrsLeft;
+ manages PTestMultiMgrsRight;
+
+parent:
+ async OK();
+
+child:
+ async PTestMultiMgrsLeft();
+ async PTestMultiMgrsRight();
+ async Check();
+ async __delete__();
+};
+
+} // namespace _ipdltest
+} // namespace mozilla