mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-12-29 03:44:37 +00:00
20 lines
273 B
Plaintext
20 lines
273 B
Plaintext
include protocol "PTestManyChildAllocs.ipdl";
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestManyChildAllocsSub {
|
|
manager PTestManyChildAllocs;
|
|
|
|
child:
|
|
__delete__();
|
|
|
|
parent:
|
|
Hello();
|
|
|
|
// empty
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|