summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestManyChildAllocsSub.ipdl
blob: e20c2badfdd425fdf791c699841794b16cabe9d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
include protocol PTestManyChildAllocs;

include "mozilla/_ipdltest/TestManyChildAllocs.h";

namespace mozilla {
namespace _ipdltest {

[ManualDealloc, ChildImpl="TestManyChildAllocsSubChild", ParentImpl="TestManyChildAllocsSubParent"]
protocol PTestManyChildAllocsSub {
    manager PTestManyChildAllocs;

child:
    async __delete__();

parent:
    async Hello();

    // empty
};

} // namespace _ipdltest
} // namespace mozilla