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