2009-08-12 18:31:48 +00:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
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
|
|
|
|
2010-07-19 18:33:33 +00:00
|
|
|
include protocol PContent;
|
2010-04-27 07:12:38 +00:00
|
|
|
include protocol PTestShellCommand;
|
|
|
|
include protocol PContextWrapper;
|
2009-08-12 18:31:48 +00:00
|
|
|
|
2009-07-11 06:33:10 +00:00
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2009-11-06 20:43:39 +00:00
|
|
|
rpc protocol PTestShell
|
2009-07-11 06:33:10 +00:00
|
|
|
{
|
2010-07-19 18:33:33 +00:00
|
|
|
manager PContent;
|
2009-08-12 18:31:48 +00:00
|
|
|
|
2009-09-09 22:00:14 +00:00
|
|
|
manages PTestShellCommand;
|
2009-11-06 20:43:39 +00:00
|
|
|
manages PContextWrapper;
|
2009-08-25 23:07:22 +00:00
|
|
|
|
2009-08-12 18:31:48 +00:00
|
|
|
child:
|
2009-12-03 08:16:14 +00:00
|
|
|
__delete__();
|
|
|
|
|
2009-08-25 23:07:22 +00:00
|
|
|
ExecuteCommand(nsString aCommand);
|
|
|
|
|
2009-09-09 22:00:14 +00:00
|
|
|
PTestShellCommand(nsString aCommand);
|
2009-11-06 20:43:39 +00:00
|
|
|
|
|
|
|
parent:
|
|
|
|
PContextWrapper();
|
|
|
|
|
2009-07-11 06:33:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|