summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestBridgeSub.ipdl
diff options
context:
space:
mode:
Diffstat (limited to 'ipc/ipdl/test/cxx/PTestBridgeSub.ipdl')
-rw-r--r--ipc/ipdl/test/cxx/PTestBridgeSub.ipdl25
1 files changed, 25 insertions, 0 deletions
diff --git a/ipc/ipdl/test/cxx/PTestBridgeSub.ipdl b/ipc/ipdl/test/cxx/PTestBridgeSub.ipdl
new file mode 100644
index 000000000..6c798c84e
--- /dev/null
+++ b/ipc/ipdl/test/cxx/PTestBridgeSub.ipdl
@@ -0,0 +1,25 @@
+include protocol PTestBridgeMainSub;
+
+namespace mozilla {
+namespace _ipdltest {
+
+
+protocol PTestBridgeSub {
+child:
+ async Ping();
+
+parent:
+ async BridgeEm();
+ async __delete__();
+
+state START:
+ send Ping goto BRIDGEEM;
+state BRIDGEEM:
+ recv BridgeEm goto DEAD;
+state DEAD:
+ recv __delete__;
+};
+
+
+} // namespace mozilla
+} // namespace _ipdltest