mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 16:46:26 +00:00
03a26ce028
CLOSED TREE
46 lines
1.1 KiB
Plaintext
46 lines
1.1 KiB
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 PBroadcastChannel;
|
|
include protocol PFileDescriptorSet;
|
|
include protocol PVsync;
|
|
|
|
include DOMTypes;
|
|
include PBackgroundSharedTypes;
|
|
include PBackgroundIDBSharedTypes;
|
|
|
|
namespace mozilla {
|
|
namespace ipc {
|
|
|
|
sync protocol PBackground
|
|
{
|
|
manages PBackgroundIDBFactory;
|
|
manages PBackgroundTest;
|
|
manages PBlob;
|
|
manages PBroadcastChannel;
|
|
manages PFileDescriptorSet;
|
|
manages PVsync;
|
|
|
|
parent:
|
|
// Only called at startup during mochitests to check the basic infrastructure.
|
|
PBackgroundTest(nsCString testArg);
|
|
|
|
PBackgroundIDBFactory(LoggingInfo loggingInfo);
|
|
|
|
PVsync();
|
|
|
|
PBroadcastChannel(PrincipalInfo pInfo, nsString origin, nsString channel);
|
|
|
|
both:
|
|
PBlob(BlobConstructorParams params);
|
|
|
|
PFileDescriptorSet(FileDescriptor fd);
|
|
};
|
|
|
|
} // namespace ipc
|
|
} // namespace mozilla
|