mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
37 lines
881 B
Plaintext
37 lines
881 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 PBackgroundIDBFactory;
|
|
include protocol PBackgroundTest;
|
|
include protocol PBlob;
|
|
include protocol PFileDescriptorSet;
|
|
|
|
include DOMTypes;
|
|
include PBackgroundIDBSharedTypes;
|
|
|
|
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(LoggingInfo loggingInfo);
|
|
|
|
both:
|
|
PBlob(BlobConstructorParams params);
|
|
|
|
PFileDescriptorSet(FileDescriptor fd);
|
|
};
|
|
|
|
} // namespace ipc
|
|
} // namespace mozilla
|