diff options
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestSelfManageRoot.ipdl')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestSelfManageRoot.ipdl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestSelfManageRoot.ipdl b/ipc/ipdl/test/cxx/PTestSelfManageRoot.ipdl new file mode 100644 index 000000000..429f8bfc8 --- /dev/null +++ b/ipc/ipdl/test/cxx/PTestSelfManageRoot.ipdl @@ -0,0 +1,23 @@ +include protocol PTestSelfManage; + +namespace mozilla { +namespace _ipdltest { + + +protocol PTestSelfManageRoot { + manages PTestSelfManage; + +child: + async PTestSelfManage(); + async __delete__(); + +state LIVE: + send PTestSelfManage goto DEAD; + +state DEAD: + send __delete__; +}; + + +} // namespace mozilla +} // namespace _ipdltest |