blob: 11553c94b8f179b0b80ed8b2d0ec4068367320ff (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
include protocol PTestEndpointBridgeMainSub;
include protocol PTestEndpointBridgeSub;
namespace mozilla {
namespace _ipdltest {
protocol PTestEndpointBridgeMain {
child spawns PTestEndpointBridgeSub;
child:
async Start();
parent:
async Bridged(Endpoint<PTestEndpointBridgeMainSubParent> endpoint);
};
} // namespace mozilla
} // namespace _ipdltest
|