2013-11-26 23:59:41 -08:00
|
|
|
/* 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/. */
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
include protocol PBackgroundIDBFactory;
|
2013-11-26 23:59:41 -08:00
|
|
|
include protocol PBackgroundTest;
|
2014-09-26 16:21:57 -07:00
|
|
|
include protocol PBlob;
|
2015-01-15 08:58:40 -08:00
|
|
|
include protocol PBroadcastChannel;
|
2014-09-26 16:21:57 -07:00
|
|
|
include protocol PFileDescriptorSet;
|
2015-01-13 15:37:00 -08:00
|
|
|
include protocol PVsync;
|
2014-09-26 16:21:57 -07:00
|
|
|
|
|
|
|
include DOMTypes;
|
2015-01-15 08:58:40 -08:00
|
|
|
include PBackgroundSharedTypes;
|
2014-10-15 21:56:52 -07:00
|
|
|
include PBackgroundIDBSharedTypes;
|
2014-09-26 16:21:57 -07:00
|
|
|
|
2013-11-26 23:59:41 -08:00
|
|
|
namespace mozilla {
|
|
|
|
namespace ipc {
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
sync protocol PBackground
|
2013-11-26 23:59:41 -08:00
|
|
|
{
|
2014-09-26 16:21:57 -07:00
|
|
|
manages PBackgroundIDBFactory;
|
2013-11-26 23:59:41 -08:00
|
|
|
manages PBackgroundTest;
|
2014-09-26 16:21:57 -07:00
|
|
|
manages PBlob;
|
2015-01-15 08:58:40 -08:00
|
|
|
manages PBroadcastChannel;
|
2014-09-26 16:21:57 -07:00
|
|
|
manages PFileDescriptorSet;
|
2015-01-13 15:37:00 -08:00
|
|
|
manages PVsync;
|
2013-11-26 23:59:41 -08:00
|
|
|
|
|
|
|
parent:
|
|
|
|
// Only called at startup during mochitests to check the basic infrastructure.
|
|
|
|
PBackgroundTest(nsCString testArg);
|
2014-09-26 16:21:57 -07:00
|
|
|
|
2014-10-15 21:56:52 -07:00
|
|
|
PBackgroundIDBFactory(LoggingInfo loggingInfo);
|
2014-09-26 16:21:57 -07:00
|
|
|
|
2015-01-13 15:37:00 -08:00
|
|
|
PVsync();
|
|
|
|
|
2015-01-15 08:58:40 -08:00
|
|
|
PBroadcastChannel(PrincipalInfo pInfo, nsString origin, nsString channel);
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
both:
|
|
|
|
PBlob(BlobConstructorParams params);
|
|
|
|
|
|
|
|
PFileDescriptorSet(FileDescriptor fd);
|
2013-11-26 23:59:41 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace ipc
|
|
|
|
} // namespace mozilla
|