mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
320 B
Plaintext
20 lines
320 B
Plaintext
include protocol PTestManyChildAllocsSub;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestManyChildAllocs {
|
|
manages PTestManyChildAllocsSub;
|
|
|
|
child:
|
|
Go(); // start allocating
|
|
|
|
parent:
|
|
Done();
|
|
|
|
PTestManyChildAllocsSub();
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|