summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestSelfManage.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestSelfManage.ipdl')
-rw-r--r--ipc/ipdl/test/cxx/PTestSelfManage.ipdl22
1 files changed, 22 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestSelfManage.ipdl b/ipc/ipdl/test/cxx/PTestSelfManage.ipdl
new file mode 100644
index 000000000..69eb4f55c
--- /dev/null
+++ b/ipc/ipdl/test/cxx/PTestSelfManage.ipdl
@@ -0,0 +1,22 @@
+include protocol PTestSelfManageRoot;
+
+namespace mozilla {
+namespace _ipdltest {
+
+
+protocol PTestSelfManage {
+ manager PTestSelfManageRoot or PTestSelfManage;
+ manages PTestSelfManage;
+
+child:
+ async PTestSelfManage();
+ async __delete__();
+
+state LIVE:
+ send PTestSelfManage goto LIVE;
+ send __delete__;
+};
+
+
+} // namespace mozilla
+} // namespace _ipdltest