blob: 6bfaace2a002ea39997e8276c0750ece75243116 (
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
#ifndef mozilla__ipdltest_TestEndpointOpens_h
#define mozilla__ipdltest_TestEndpointOpens_h 1
#include "mozilla/_ipdltest/IPDLUnitTests.h"
#include "mozilla/_ipdltest/PTestEndpointOpensParent.h"
#include "mozilla/_ipdltest/PTestEndpointOpensChild.h"
#include "mozilla/_ipdltest2/PTestEndpointOpensOpenedParent.h"
#include "mozilla/_ipdltest2/PTestEndpointOpensOpenedChild.h"
namespace mozilla {
// parent process
namespace _ipdltest {
class TestEndpointOpensParent : public PTestEndpointOpensParent
{
public:
TestEndpointOpensParent() {}
virtual ~TestEndpointOpensParent() {}
static bool RunTestInProcesses() { return true; }
static bool RunTestInThreads() { return false; }
void Main();
protected:
virtual bool RecvStartSubprotocol(mozilla::ipc::Endpoint<PTestEndpointOpensOpenedParent>&& endpoint);
virtual void ActorDestroy(ActorDestroyReason why) override;
};
} // namespace _ipdltest
namespace _ipdltest2 {
class TestEndpointOpensOpenedParent : public PTestEndpointOpensOpenedParent
{
public:
explicit TestEndpointOpensOpenedParent()
{}
virtual ~TestEndpointOpensOpenedParent() {}
protected:
virtual bool RecvHello() override;
virtual bool RecvHelloSync() override;
virtual bool AnswerHelloRpc() override;
virtual void ActorDestroy(ActorDestroyReason why) override;
};
} // namespace _ipdltest2
// child process
namespace _ipdltest {
class TestEndpointOpensChild : public PTestEndpointOpensChild
{
public:
TestEndpointOpensChild();
virtual ~TestEndpointOpensChild() {}
protected:
virtual bool RecvStart() override;
virtual void ActorDestroy(ActorDestroyReason why) override;
};
} // namespace _ipdltest
namespace _ipdltest2 {
class TestEndpointOpensOpenedChild : public PTestEndpointOpensOpenedChild
{
public:
explicit TestEndpointOpensOpenedChild()
: mGotHi(false)
{}
virtual ~TestEndpointOpensOpenedChild() {}
protected:
virtual bool RecvHi() override;
virtual bool AnswerHiRpc() override;
virtual void ActorDestroy(ActorDestroyReason why) override;
bool mGotHi;
};
} // namespace _ipdltest2
} // namespace mozilla
#endif // ifndef mozilla__ipdltest_TestEndpointOpens_h
|