summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestEndpointBridgeMainSub.ipdl
blob: fecba8a5d066ea68f48d379ccb03f9e71347bee1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */

include protocol PTestEndpointBridgeMain;
include protocol PTestEndpointBridgeSub;

namespace mozilla {
namespace _ipdltest {

// (Bridge protocols can have different semantics than the endpoints
// they bridge)
intr protocol PTestEndpointBridgeMainSub {
child:
  async Hi();
  intr HiRpc();

parent:
  async Hello();
  sync HelloSync();
  intr HelloRpc();
};


} // namespace mozilla
} // namespace _ipdltest