blob: e8026a0d0f68724292fa606b94c021c255ed9463 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
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
|