diff options
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestDesc.ipdl')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestDesc.ipdl | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestDesc.ipdl b/ipc/ipdl/test/cxx/PTestDesc.ipdl new file mode 100644 index 0000000000..d18d2d8598 --- /dev/null +++ b/ipc/ipdl/test/cxx/PTestDesc.ipdl @@ -0,0 +1,24 @@ +include protocol PTestDescSub; +include protocol PTestDescSubsub; + +include "mozilla/_ipdltest/TestDesc.h"; + +namespace mozilla { +namespace _ipdltest { + +[ManualDealloc, ChildImpl="TestDescChild", ParentImpl="TestDescParent"] +intr protocol PTestDesc { + manages PTestDescSub; +child: + [LegacyIntr] intr PTestDescSub(nullable PTestDescSubsub dummy); + + async Test(PTestDescSubsub a); + + async __delete__(); + +parent: + async Ok(PTestDescSubsub a); +}; + +} +} |