mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-09 21:33:43 +00:00
18 lines
265 B
Plaintext
18 lines
265 B
Plaintext
include protocol "PTestShutdownSub.ipdl";
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
sync protocol PTestShutdownSubsub {
|
|
manager PTestShutdownSub;
|
|
|
|
parent:
|
|
__delete__();
|
|
|
|
state LIVE:
|
|
recv __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|