diff -r 000000000000 -r 6474c204b198 dom/ipc/FileDescriptorSetParent.h --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/dom/ipc/FileDescriptorSetParent.h Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,48 @@ +/* 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_FileDescriptorSetParent_h__ +#define mozilla_dom_FileDescriptorSetParent_h__ + +#include "mozilla/Assertions.h" +#include "mozilla/Attributes.h" +#include "mozilla/dom/PFileDescriptorSetParent.h" +#include "nsTArray.h" + +namespace mozilla { + +namespace ipc { + +class FileDescriptor; + +} // namespace ipc + +namespace dom { + +class ContentParent; + +class FileDescriptorSetParent MOZ_FINAL: public PFileDescriptorSetParent +{ + friend class ContentParent; + +public: + typedef mozilla::ipc::FileDescriptor FileDescriptor; + + void + ForgetFileDescriptors(nsTArray& aFileDescriptors); + +private: + FileDescriptorSetParent(const FileDescriptor& aFileDescriptor); + ~FileDescriptorSetParent(); + + virtual bool + RecvAddFileDescriptor(const FileDescriptor& aFileDescriptor) MOZ_OVERRIDE; + + nsTArray mFileDescriptors; +}; + +} // namespace dom +} // namespace mozilla + +#endif // mozilla_dom_FileDescriptorSetParent_h__