gecko/ipc/glue/PBackground.ipdl

36 lines
823 B
Plaintext
Raw Normal View History

/* 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 PBackgroundIDBFactory;
include protocol PBackgroundTest;
include protocol PBlob;
include protocol PFileDescriptorSet;
include DOMTypes;
namespace mozilla {
namespace ipc {
sync protocol PBackground
{
manages PBackgroundIDBFactory;
manages PBackgroundTest;
manages PBlob;
manages PFileDescriptorSet;
parent:
// Only called at startup during mochitests to check the basic infrastructure.
PBackgroundTest(nsCString testArg);
PBackgroundIDBFactory();
both:
PBlob(BlobConstructorParams params);
PFileDescriptorSet(FileDescriptor fd);
};
} // namespace ipc
} // namespace mozilla