summaryrefslogtreecommitdiffstats
path: root/ipc/ipdl/test/cxx/PTestCancel.ipdl
blob: 4ad902e8e1f2ac2c5095b7fd4b02f559adf0a9d8 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
include "mozilla/_ipdltest/TestCancel.h";

namespace mozilla {
namespace _ipdltest {

[ManualDealloc, NestedUpTo=inside_sync, ChildImpl="TestCancelChild", ParentImpl="TestCancelParent"]
sync protocol PTestCancel
{
// Test1
child:
    [Nested=inside_sync] sync Test1_1();
parent:
    async Done1();

// Test2
child:
    async Start2();
    [Nested=inside_sync] sync Test2_2();
parent:
    sync Test2_1();

// Test3
child:
    [Nested=inside_sync] sync Test3_1();
parent:
    async Start3();
    [Nested=inside_sync] sync Test3_2();

parent:
    async Done();

child:
    [Nested=inside_sync] sync CheckChild() returns (uint32_t reply);
parent:
    [Nested=inside_sync] sync CheckParent() returns (uint32_t reply);
};

} // namespace _ipdltest
} // namespace mozilla