mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
27 lines
572 B
C
27 lines
572 B
C
|
#include "mozilla/test/TestProtocolParent.h"
|
||
|
|
||
|
namespace mozilla {
|
||
|
namespace test {
|
||
|
|
||
|
// Header file contents
|
||
|
class TestParent :
|
||
|
public TestProtocolParent
|
||
|
{
|
||
|
virtual nsresult RecvPing(int* status);
|
||
|
virtual nsresult RecvGetValue(const String& key);
|
||
|
virtual nsresult RecvGetValues(const StringArray& keys);
|
||
|
virtual nsresult RecvSetValue(
|
||
|
const String& key,
|
||
|
const String& val,
|
||
|
bool* ok);
|
||
|
|
||
|
public:
|
||
|
TestParent();
|
||
|
virtual ~TestParent();
|
||
|
|
||
|
void DoStuff();
|
||
|
};
|
||
|
|
||
|
} // namespace test
|
||
|
} // namespace mozilla
|