mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-02-02 22:34:55 +00:00
29 lines
374 B
Plaintext
29 lines
374 B
Plaintext
|
|
namespace mozilla {
|
|
namespace _ipdltest {
|
|
|
|
|
|
protocol PTestSanity {
|
|
|
|
child:
|
|
Ping(int zero, float zeroPtFive, int8_t dummy);
|
|
__delete__();
|
|
|
|
parent:
|
|
Pong(int one, float zeroPtTwoFive, uint8_t dummy);
|
|
|
|
|
|
state PING:
|
|
send Ping goto PONG;
|
|
|
|
state PONG:
|
|
recv Pong goto DEAD;
|
|
|
|
state DEAD:
|
|
send __delete__;
|
|
};
|
|
|
|
|
|
} // namespace mozilla
|
|
} // namespace _ipdltest
|