2014-03-25 18:37:13 +00: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 23:21:57 +00:00
|
|
|
include protocol PBackground;
|
2014-03-25 18:37:13 +00:00
|
|
|
include protocol PContent;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2014-09-26 23:21:57 +00:00
|
|
|
namespace ipc {
|
2014-03-25 18:37:13 +00:00
|
|
|
|
|
|
|
protocol PFileDescriptorSet
|
|
|
|
{
|
2014-09-26 23:21:57 +00:00
|
|
|
manager PBackground or PContent;
|
2014-03-25 18:37:13 +00:00
|
|
|
|
2014-03-25 18:37:28 +00:00
|
|
|
both:
|
2016-01-26 21:51:53 +00:00
|
|
|
async AddFileDescriptor(FileDescriptor fd);
|
2014-03-25 18:37:13 +00:00
|
|
|
|
2016-01-26 21:51:53 +00:00
|
|
|
async __delete__();
|
2014-03-25 18:37:13 +00:00
|
|
|
};
|
|
|
|
|
2014-09-26 23:21:57 +00:00
|
|
|
} // namespace ipc
|
2014-03-25 18:37:13 +00:00
|
|
|
} // namespace mozilla
|