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