mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-23 18:32:20 +00:00
25 lines
404 B
Plaintext
25 lines
404 B
Plaintext
include protocol PTestMultiMgrs;
|
|
include protocol PTestMultiMgrsBottom;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestMultiMgrsLeft {
|
|
manager PTestMultiMgrs;
|
|
|
|
manages PTestMultiMgrsBottom;
|
|
|
|
child:
|
|
PTestMultiMgrsBottom();
|
|
__delete__();
|
|
|
|
state START:
|
|
send PTestMultiMgrsBottom goto DONE;
|
|
|
|
state DONE:
|
|
send __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|