mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
20 lines
319 B
C++
20 lines
319 B
C++
|
#include "mozilla/test/TestProcessParent.h"
|
||
|
using mozilla::ipc::GeckoChildProcessHost;
|
||
|
|
||
|
namespace mozilla {
|
||
|
namespace test {
|
||
|
|
||
|
|
||
|
TestProcessParent::TestProcessParent() :
|
||
|
GeckoChildProcessHost(GeckoChildProcess_TestHarness)
|
||
|
{
|
||
|
}
|
||
|
|
||
|
TestProcessParent::~TestProcessParent()
|
||
|
{
|
||
|
}
|
||
|
|
||
|
|
||
|
} // namespace test
|
||
|
} // namespace mozilla
|