mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
405 B
Plaintext
25 lines
405 B
Plaintext
include protocol PTestMultiMgrs;
|
|
include protocol PTestMultiMgrsBottom;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestMultiMgrsRight {
|
|
manager PTestMultiMgrs;
|
|
|
|
manages PTestMultiMgrsBottom;
|
|
|
|
child:
|
|
PTestMultiMgrsBottom();
|
|
__delete__();
|
|
|
|
state START:
|
|
send PTestMultiMgrsBottom goto DONE;
|
|
|
|
state DONE:
|
|
send __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|