Bug 1883706: part 3) Implement `createHTML`, `createScript` and `createScriptURL...
[gecko.git] / ipc / testshell / PTestShell.ipdl
blobdb4d7eedcb520171be14f9723c28b9e89bc0b07f
1 /* -*- Mode: C++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 8 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this
4  * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 include protocol PContent;
7 include protocol PTestShellCommand;
9 namespace mozilla {
10 namespace ipc {
12 async protocol PTestShell
14   manager PContent;
16   manages PTestShellCommand;
18 child:
19   async __delete__();
21   async ExecuteCommand(nsString aCommand);
23   async PTestShellCommand(nsString aCommand);
26 } // namespace ipc
27 } // namespace mozilla