зеркало из https://github.com/mozilla/gecko-dev.git
27 строки
422 B
Plaintext
27 строки
422 B
Plaintext
include protocol PTestMultiMgrs;
|
|
include protocol PTestMultiMgrsBottom;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestMultiMgrsLeft {
|
|
manager PTestMultiMgrs;
|
|
|
|
manages PTestMultiMgrsBottom;
|
|
|
|
child:
|
|
async PTestMultiMgrsBottom();
|
|
async __delete__();
|
|
|
|
/*
|
|
state START:
|
|
send PTestMultiMgrsBottom goto DONE;
|
|
|
|
state DONE:
|
|
send __delete__;
|
|
*/
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|