2009-08-12 22:31:48 +04:00
|
|
|
/* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
|
2012-05-21 15:12:37 +04: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 10:33:10 +04:00
|
|
|
|
2010-07-19 22:33:33 +04:00
|
|
|
include protocol PContent;
|
2010-04-27 11:12:38 +04:00
|
|
|
include protocol PTestShellCommand;
|
2009-08-12 22:31:48 +04:00
|
|
|
|
2009-07-11 10:33:10 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2014-10-08 08:32:45 +04:00
|
|
|
async protocol PTestShell
|
2009-07-11 10:33:10 +04:00
|
|
|
{
|
2010-07-19 22:33:33 +04:00
|
|
|
manager PContent;
|
2009-08-12 22:31:48 +04:00
|
|
|
|
2009-09-10 02:00:14 +04:00
|
|
|
manages PTestShellCommand;
|
2009-08-26 03:07:22 +04:00
|
|
|
|
2009-08-12 22:31:48 +04:00
|
|
|
child:
|
2016-01-27 00:51:53 +03:00
|
|
|
async __delete__();
|
2009-12-03 11:16:14 +03:00
|
|
|
|
2016-01-27 00:51:53 +03:00
|
|
|
async ExecuteCommand(nsString aCommand);
|
2009-08-26 03:07:22 +04:00
|
|
|
|
2016-01-27 00:51:53 +03:00
|
|
|
async PTestShellCommand(nsString aCommand);
|
2009-07-11 10:33:10 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|