2014-03-25 22:37:13 +04: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-27 03:21:57 +04:00
|
|
|
include protocol PBackground;
|
2014-03-25 22:37:13 +04:00
|
|
|
include protocol PContent;
|
2019-12-03 16:41:58 +03:00
|
|
|
include protocol PSocketProcess;
|
2014-03-25 22:37:13 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
2014-09-27 03:21:57 +04:00
|
|
|
namespace ipc {
|
2014-03-25 22:37:13 +04:00
|
|
|
|
|
|
|
protocol PFileDescriptorSet
|
|
|
|
{
|
2019-12-03 16:41:58 +03:00
|
|
|
manager PBackground or PContent or PSocketProcess;
|
2014-03-25 22:37:13 +04:00
|
|
|
|
2014-03-25 22:37:28 +04:00
|
|
|
both:
|
2016-01-27 00:51:53 +03:00
|
|
|
async AddFileDescriptor(FileDescriptor fd);
|
2014-03-25 22:37:13 +04:00
|
|
|
|
2016-01-27 00:51:53 +03:00
|
|
|
async __delete__();
|
2014-03-25 22:37:13 +04:00
|
|
|
};
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
} // namespace ipc
|
2014-03-25 22:37:13 +04:00
|
|
|
} // namespace mozilla
|