gecko/ipc/glue/PBackgroundTest.ipdl
Ben Turner 4891b5f251 Bug 956218 - '(PBackground) Add a mechanism for communicating with
a non-main I/O thread via thread and process links'. r=mrbkap+khuey+bsmedberg.
2013-11-26 23:59:41 -08:00

21 lines
490 B
Plaintext

/* 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/. */
include protocol PBackground;
namespace mozilla {
namespace ipc {
// This is a very simple testing protocol that is only used during mochitests.
protocol PBackgroundTest
{
manager PBackground;
child:
__delete__(nsCString testArg);
};
} // namespace ipc
} // namespace mozilla