2014-03-25 11:37:13 -07: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 PBackground;
|
2014-03-25 11:37:13 -07:00
|
|
|
include protocol PContent;
|
|
|
|
|
|
|
|
namespace mozilla {
|
2014-09-26 16:21:57 -07:00
|
|
|
namespace ipc {
|
2014-03-25 11:37:13 -07:00
|
|
|
|
|
|
|
protocol PFileDescriptorSet
|
|
|
|
{
|
2014-09-26 16:21:57 -07:00
|
|
|
manager PBackground or PContent;
|
2014-03-25 11:37:13 -07:00
|
|
|
|
2014-03-25 11:37:28 -07:00
|
|
|
both:
|
2014-03-25 11:37:13 -07:00
|
|
|
AddFileDescriptor(FileDescriptor fd);
|
|
|
|
|
|
|
|
__delete__();
|
|
|
|
};
|
|
|
|
|
2014-09-26 16:21:57 -07:00
|
|
|
} // namespace ipc
|
2014-03-25 11:37:13 -07:00
|
|
|
} // namespace mozilla
|