2016-05-28 00:54:31 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-03-25 22:37:28 +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
|
|
|
#ifndef mozilla_ipc_FileDescriptorSetParent_h__
|
|
|
|
#define mozilla_ipc_FileDescriptorSetParent_h__
|
2014-03-25 22:37:28 +04:00
|
|
|
|
|
|
|
#include "mozilla/Assertions.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
2014-09-27 03:21:57 +04:00
|
|
|
#include "mozilla/ipc/PFileDescriptorSetParent.h"
|
2014-03-25 22:37:28 +04:00
|
|
|
#include "nsTArray.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
namespace dom {
|
2014-03-25 22:37:28 +04:00
|
|
|
|
2016-09-21 13:27:26 +03:00
|
|
|
class nsIContentParent;
|
2014-03-25 22:37:28 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
} // namespace dom
|
2014-03-25 22:37:28 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
namespace ipc {
|
2014-03-25 22:37:28 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
class BackgroundParentImpl;
|
|
|
|
class FileDescriptor;
|
2014-03-25 22:37:28 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class FileDescriptorSetParent final
|
2014-09-27 03:21:57 +04:00
|
|
|
: public PFileDescriptorSetParent
|
2014-03-25 22:37:28 +04:00
|
|
|
{
|
2014-09-27 03:21:57 +04:00
|
|
|
friend class BackgroundParentImpl;
|
2016-09-21 13:27:26 +03:00
|
|
|
friend class mozilla::dom::nsIContentParent;
|
2014-03-25 22:37:28 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
nsTArray<FileDescriptor> mFileDescriptors;
|
2014-09-18 03:36:01 +04:00
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
public:
|
2014-03-25 22:37:28 +04:00
|
|
|
void
|
|
|
|
ForgetFileDescriptors(nsTArray<FileDescriptor>& aFileDescriptors);
|
|
|
|
|
|
|
|
private:
|
2014-08-08 17:49:39 +04:00
|
|
|
explicit FileDescriptorSetParent(const FileDescriptor& aFileDescriptor);
|
2014-03-25 22:37:28 +04:00
|
|
|
~FileDescriptorSetParent();
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
2014-05-02 22:44:13 +04:00
|
|
|
|
2016-11-15 06:26:00 +03:00
|
|
|
virtual mozilla::ipc::IPCResult
|
2015-03-21 19:28:04 +03:00
|
|
|
RecvAddFileDescriptor(const FileDescriptor& aFileDescriptor) override;
|
2014-03-25 22:37:28 +04:00
|
|
|
};
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
} // namespace ipc
|
2014-03-25 22:37:28 +04:00
|
|
|
} // namespace mozilla
|
|
|
|
|
2014-09-27 03:21:57 +04:00
|
|
|
#endif // mozilla_ipc_FileDescriptorSetParent_h__
|