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