diff options
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestDataStructuresSub.ipdl')
-rw-r--r-- | ipc/ipdl/test/cxx/PTestDataStructuresSub.ipdl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestDataStructuresSub.ipdl b/ipc/ipdl/test/cxx/PTestDataStructuresSub.ipdl new file mode 100644 index 0000000000..4f546a8d29 --- /dev/null +++ b/ipc/ipdl/test/cxx/PTestDataStructuresSub.ipdl @@ -0,0 +1,18 @@ +include PTestDataStructuresCommon; +include protocol PTestDataStructures; + +include "mozilla/_ipdltest/TestDataStructures.h"; + +namespace mozilla { +namespace _ipdltest { + +[ManualDealloc, ChildImpl="TestDataStructuresSub", ParentImpl="TestDataStructuresSub"] +sync protocol PTestDataStructuresSub { + manager PTestDataStructures; + +parent: + sync __delete__(); +}; + +} // namespace _ipdltest +} // namespace mozilla |