mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-27 19:07:31 +09:00
18 lines
382 B
Text
18 lines
382 B
Text
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||
|
|
include protocol PTestEndpointOpensOpened;
|
||
|
|
|
||
|
|
namespace mozilla {
|
||
|
|
namespace _ipdltest {
|
||
|
|
|
||
|
|
protocol PTestEndpointOpens {
|
||
|
|
child:
|
||
|
|
async Start();
|
||
|
|
|
||
|
|
parent:
|
||
|
|
async StartSubprotocol(Endpoint<PTestEndpointOpensOpenedParent> endpoint);
|
||
|
|
|
||
|
|
async __delete__();
|
||
|
|
};
|
||
|
|
|
||
|
|
} // namespace mozilla
|
||
|
|
} // namespace _ipdltest
|