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