summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/gtest/PTestSelfManage.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/gtest/PTestSelfManage.ipdl')
-rw-r--r--ipc/ipdl/test/gtest/PTestSelfManage.ipdl17
1 files changed, 17 insertions, 0 deletions
diff --git a/ipc/ipdl/test/gtest/PTestSelfManage.ipdl b/ipc/ipdl/test/gtest/PTestSelfManage.ipdl
new file mode 100644
index 0000000000..e7dc077808
--- /dev/null
+++ b/ipc/ipdl/test/gtest/PTestSelfManage.ipdl
@@ -0,0 +1,17 @@
+include protocol PTestSelfManageRoot;
+
+namespace mozilla {
+namespace _ipdltest {
+
+[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
+protocol PTestSelfManage {
+ manager PTestSelfManageRoot or PTestSelfManage;
+ manages PTestSelfManage;
+
+child:
+ async PTestSelfManage();
+ async __delete__();
+};
+
+} // namespace mozilla
+} // namespace _ipdltest