gecko/ipc/ipdl/test/cxx/PTestBridgeMain.ipdl

25 lines
312 B
Plaintext
Raw Normal View History

2011-06-03 11:33:56 -07:00
include protocol PTestBridgeSub;
namespace mozilla {
namespace _ipdltest {
protocol PTestBridgeMain {
child spawns PTestBridgeSub;
child:
Start();
parent:
__delete__();
state START:
send Start goto DEAD;
state DEAD:
recv __delete__;
};
} // namespace mozilla
} // namespace _ipdltest