mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
33 lines
521 B
C++
33 lines
521 B
C++
|
#include "mozilla/test/TestChild.h"
|
||
|
|
||
|
using mozilla::test::TestChild;
|
||
|
|
||
|
// C++ file contents
|
||
|
nsresult TestChild::RecvPing(int* status)
|
||
|
{
|
||
|
*status = 42;
|
||
|
return NS_OK;
|
||
|
}
|
||
|
|
||
|
nsresult TestChild::RecvTellValue(
|
||
|
const String& key,
|
||
|
const String& val)
|
||
|
{
|
||
|
return NS_ERROR_NOT_IMPLEMENTED;
|
||
|
}
|
||
|
|
||
|
nsresult TestChild::RecvTellValues(
|
||
|
const StringArray& keys,
|
||
|
const StringArray& vals)
|
||
|
{
|
||
|
return NS_ERROR_NOT_IMPLEMENTED;
|
||
|
}
|
||
|
|
||
|
TestChild::TestChild()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
TestChild::~TestChild()
|
||
|
{
|
||
|
}
|