mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
372 B
Plaintext
26 lines
372 B
Plaintext
include protocol PTestOpensOpened;
|
|
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
protocol PTestOpens {
|
|
// This channel is opened and parked on a non-main thread
|
|
child opens PTestOpensOpened;
|
|
|
|
child:
|
|
Start();
|
|
|
|
parent:
|
|
__delete__();
|
|
|
|
state START:
|
|
send Start goto DEAD;
|
|
state DEAD:
|
|
recv __delete__;
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|