2012-05-21 04:12:37 -07:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2009-07-10 23:33:10 -07:00
|
|
|
|
2009-09-09 15:00:14 -07:00
|
|
|
#ifndef ipc_testshell_TestShellChild_h
|
|
|
|
#define ipc_testshell_TestShellChild_h 1
|
2009-07-10 23:33:10 -07:00
|
|
|
|
2009-09-09 15:59:06 -07:00
|
|
|
#include "mozilla/ipc/PTestShellChild.h"
|
|
|
|
#include "mozilla/ipc/PTestShellCommandChild.h"
|
2009-08-28 16:16:19 -07:00
|
|
|
#include "mozilla/ipc/XPCShellEnvironment.h"
|
|
|
|
|
|
|
|
#include "nsAutoPtr.h"
|
2009-07-10 23:33:10 -07:00
|
|
|
|
|
|
|
namespace mozilla {
|
2009-11-06 12:43:39 -08:00
|
|
|
|
|
|
|
namespace jsipc {
|
|
|
|
class PContextWrapperChild;
|
|
|
|
}
|
|
|
|
|
2009-07-10 23:33:10 -07:00
|
|
|
namespace ipc {
|
|
|
|
|
|
|
|
class XPCShellEnvironment;
|
|
|
|
|
2009-09-09 15:59:06 -07:00
|
|
|
class TestShellChild : public PTestShellChild
|
2009-07-10 23:33:10 -07:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
TestShellChild();
|
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-08-25 16:07:22 -07:00
|
|
|
RecvExecuteCommand(const nsString& aCommand);
|
|
|
|
|
2009-09-09 15:59:06 -07:00
|
|
|
PTestShellCommandChild*
|
2009-09-22 10:31:11 -07:00
|
|
|
AllocPTestShellCommand(const nsString& aCommand);
|
2009-08-25 16:07:22 -07:00
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-09-09 15:59:06 -07:00
|
|
|
RecvPTestShellCommandConstructor(PTestShellCommandChild* aActor,
|
2009-09-09 15:00:14 -07:00
|
|
|
const nsString& aCommand);
|
2009-08-25 16:07:22 -07:00
|
|
|
|
2009-09-17 16:09:20 -07:00
|
|
|
bool
|
2009-12-03 00:16:14 -08:00
|
|
|
DeallocPTestShellCommand(PTestShellCommandChild* aCommand);
|
2009-07-10 23:33:10 -07:00
|
|
|
|
2009-11-06 12:43:39 -08:00
|
|
|
PContextWrapperChild* AllocPContextWrapper();
|
|
|
|
bool DeallocPContextWrapper(PContextWrapperChild* actor);
|
|
|
|
|
2009-07-10 23:33:10 -07:00
|
|
|
private:
|
2009-08-28 16:16:19 -07:00
|
|
|
nsAutoPtr<XPCShellEnvironment> mXPCShell;
|
2009-07-10 23:33:10 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
} /* namespace ipc */
|
|
|
|
} /* namespace mozilla */
|
|
|
|
|
2009-09-09 15:00:14 -07:00
|
|
|
#endif /* ipc_testshell_TestShellChild_h */
|