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