mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
19 lines
317 B
Plaintext
19 lines
317 B
Plaintext
include protocol PTestMultiMgrsLeft;
|
|
include protocol PTestMultiMgrsRight;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
protocol PTestMultiMgrsBottom {
|
|
manager PTestMultiMgrsLeft or PTestMultiMgrsRight;
|
|
|
|
child:
|
|
__delete__();
|
|
|
|
state DOA:
|
|
send __delete__;
|
|
};
|
|
|
|
} // namespace _ipdltest
|
|
} // namespace mozilla
|