mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
26 lines
537 B
C++
26 lines
537 B
C++
#include "mozilla/test/TestProtocolChild.h"
|
|
|
|
namespace mozilla {
|
|
namespace test {
|
|
|
|
// Header file contents
|
|
class TestChild :
|
|
public TestProtocolChild
|
|
{
|
|
protected:
|
|
virtual nsresult RecvPing(int* status);
|
|
virtual nsresult RecvTellValue(
|
|
const String& key,
|
|
const String& val);
|
|
virtual nsresult RecvTellValues(
|
|
const StringArray& keys,
|
|
const StringArray& vals);
|
|
|
|
public:
|
|
TestChild();
|
|
virtual ~TestChild();
|
|
};
|
|
|
|
} // namespace test
|
|
} // namespace mozilla
|