mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-24 09:27:31 +09:00
21 lines
380 B
Text
21 lines
380 B
Text
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||
|
|
|
||
|
|
include protocol PTestEndpointBridgeMainSub;
|
||
|
|
|
||
|
|
namespace mozilla {
|
||
|
|
namespace _ipdltest {
|
||
|
|
|
||
|
|
|
||
|
|
protocol PTestEndpointBridgeSub {
|
||
|
|
child:
|
||
|
|
async Ping();
|
||
|
|
|
||
|
|
async Bridged(Endpoint<PTestEndpointBridgeMainSubChild> endpoint);
|
||
|
|
|
||
|
|
parent:
|
||
|
|
async BridgeEm();
|
||
|
|
};
|
||
|
|
|
||
|
|
|
||
|
|
} // namespace mozilla
|
||
|
|
} // namespace _ipdltest
|