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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_FileDescriptorSetChild_h__
|
|
|
|
#define mozilla_dom_FileDescriptorSetChild_h__
|
|
|
|
|
|
|
|
#include "mozilla/Assertions.h"
|
|
|
|
#include "mozilla/Attributes.h"
|
|
|
|
#include "mozilla/dom/PFileDescriptorSetChild.h"
|
|
|
|
#include "nsTArray.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
|
|
|
|
namespace ipc {
|
|
|
|
|
|
|
|
class FileDescriptor;
|
|
|
|
|
|
|
|
} // namespace ipc
|
|
|
|
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
class ContentChild;
|
|
|
|
|
|
|
|
class FileDescriptorSetChild MOZ_FINAL: public PFileDescriptorSetChild
|
|
|
|
{
|
|
|
|
friend class ContentChild;
|
|
|
|
|
|
|
|
public:
|
|
|
|
typedef mozilla::ipc::FileDescriptor FileDescriptor;
|
|
|
|
|
|
|
|
void
|
2014-03-25 18:37:28 +00:00
|
|
|
ForgetFileDescriptors(nsTArray<FileDescriptor>& aFileDescriptors);
|
2014-03-25 18:37:13 +00:00
|
|
|
|
|
|
|
private:
|
2014-08-08 13:49:39 +00:00
|
|
|
explicit FileDescriptorSetChild(const FileDescriptor& aFileDescriptor);
|
2014-03-25 18:37:28 +00:00
|
|
|
~FileDescriptorSetChild();
|
2014-03-25 18:37:13 +00:00
|
|
|
|
|
|
|
virtual bool
|
2014-03-25 18:37:28 +00:00
|
|
|
RecvAddFileDescriptor(const FileDescriptor& aFileDescriptor) MOZ_OVERRIDE;
|
2014-03-25 18:37:13 +00:00
|
|
|
|
2014-03-25 18:37:28 +00:00
|
|
|
nsTArray<FileDescriptor> mFileDescriptors;
|
2014-03-25 18:37:13 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_FileDescriptorSetChild_h__
|