2009-12-03 08:16:14 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
|
|
* vim: sw=2 ts=8 et :
|
|
|
|
*/
|
2012-05-21 11:12:37 +00: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-11 06:33:10 +00:00
|
|
|
|
2009-09-09 22:00:14 +00:00
|
|
|
#ifndef ipc_testshell_TestShellParent_h
|
|
|
|
#define ipc_testshell_TestShellParent_h 1
|
2009-07-11 06:33:10 +00:00
|
|
|
|
2009-09-09 22:59:06 +00:00
|
|
|
#include "mozilla/ipc/PTestShellParent.h"
|
|
|
|
#include "mozilla/ipc/PTestShellCommandParent.h"
|
2009-08-25 23:07:22 +00:00
|
|
|
|
2013-08-28 02:59:14 +00:00
|
|
|
#include "js/TypeDecls.h"
|
2015-01-23 10:23:57 +00:00
|
|
|
#include "js/RootingAPI.h"
|
2013-09-23 17:25:00 +00:00
|
|
|
#include "nsString.h"
|
2009-07-11 06:33:10 +00:00
|
|
|
|
|
|
|
namespace mozilla {
|
2009-11-06 20:43:39 +00:00
|
|
|
|
2009-07-11 06:33:10 +00:00
|
|
|
namespace ipc {
|
|
|
|
|
2009-12-03 08:16:14 +00:00
|
|
|
class TestShellCommandParent;
|
|
|
|
|
|
|
|
class TestShellParent : public PTestShellParent
|
|
|
|
{
|
|
|
|
public:
|
2015-03-21 16:28:04 +00:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
2014-05-02 18:44:13 +00:00
|
|
|
|
2009-12-03 08:16:14 +00:00
|
|
|
PTestShellCommandParent*
|
2015-03-21 16:28:04 +00:00
|
|
|
AllocPTestShellCommandParent(const nsString& aCommand) override;
|
2009-12-03 08:16:14 +00:00
|
|
|
|
|
|
|
bool
|
2015-03-21 16:28:04 +00:00
|
|
|
DeallocPTestShellCommandParent(PTestShellCommandParent* aActor) override;
|
2009-12-03 08:16:14 +00:00
|
|
|
|
|
|
|
bool
|
|
|
|
CommandDone(TestShellCommandParent* aActor, const nsString& aResponse);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2009-09-09 22:59:06 +00:00
|
|
|
class TestShellCommandParent : public PTestShellCommandParent
|
2009-08-25 23:07:22 +00:00
|
|
|
{
|
|
|
|
public:
|
2014-08-08 13:01:25 +00:00
|
|
|
TestShellCommandParent() {}
|
2009-08-25 23:07:22 +00:00
|
|
|
|
2013-08-08 22:53:04 +00:00
|
|
|
bool SetCallback(JSContext* aCx, JS::Value aCallback);
|
2009-08-25 23:07:22 +00:00
|
|
|
|
2013-08-08 22:53:04 +00:00
|
|
|
bool RunCallback(const nsString& aResponse);
|
2009-08-25 23:07:22 +00:00
|
|
|
|
|
|
|
void ReleaseCallback();
|
|
|
|
|
2009-12-03 08:16:14 +00:00
|
|
|
protected:
|
2011-06-23 23:31:58 +00:00
|
|
|
bool ExecuteCallback(const nsString& aResponse);
|
|
|
|
|
|
|
|
void ActorDestroy(ActorDestroyReason why);
|
2013-07-08 15:48:39 +00:00
|
|
|
|
2009-12-03 08:16:14 +00:00
|
|
|
bool Recv__delete__(const nsString& aResponse) {
|
2011-06-23 23:31:58 +00:00
|
|
|
return ExecuteCallback(aResponse);
|
2009-12-03 08:16:14 +00:00
|
|
|
}
|
|
|
|
|
2009-08-25 23:07:22 +00:00
|
|
|
private:
|
2015-01-23 10:23:57 +00:00
|
|
|
JS::PersistentRooted<JS::Value> mCallback;
|
2009-08-25 23:07:22 +00:00
|
|
|
};
|
|
|
|
|
2009-07-11 06:33:10 +00:00
|
|
|
|
|
|
|
} /* namespace ipc */
|
|
|
|
} /* namespace mozilla */
|
|
|
|
|
2009-09-09 22:00:14 +00:00
|
|
|
#endif /* ipc_testshell_TestShellParent_h */
|