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