gecko/ipc/test-harness/TestParent.h

27 lines
572 B
C
Raw Normal View History

#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