blob: dd76801a43c028b79a48f8cddf50dd143e31ff57 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
include protocol PTestDescendant;
include protocol PTestDescendantSubsub;
namespace mozilla {
namespace _ipdltest {
[ChildProc=any, ChildImpl=virtual, ParentImpl=virtual]
async protocol PTestDescendantSub {
manager PTestDescendant;
manages PTestDescendantSubsub;
child:
async __delete__();
async PTestDescendantSubsub();
};
}
}
|