Bug 1873042 - Part 3: Optimise substring(0, 1) pattern. r=jandem
[gecko.git] / ipc / testshell / PTestShell.ipdl
blobf952f59584b6897cfaa8059d1793109812b21a15
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 [ManualDealloc]
13 async protocol PTestShell
15   manager PContent;
17   manages PTestShellCommand;
19 child:
20   async __delete__();
22   async ExecuteCommand(nsString aCommand);
24   async PTestShellCommand(nsString aCommand);
27 } // namespace ipc
28 } // namespace mozilla