blob: 0cb522255c950e1d8d7a14294d0a1e8e377d292c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
include protocol PTestActorPunning;
include "mozilla/_ipdltest/TestActorPunning.h";
namespace mozilla {
namespace _ipdltest {
[ManualDealloc, ChildImpl="TestActorPunningSubChild", ParentImpl="TestActorPunningSubParent"]
protocol PTestActorPunningSub {
manager PTestActorPunning;
child:
async Bad();
async __delete__();
};
} // namespace mozilla
} // namespace _ipdltes
|