#ifndef IPC_IPC_PLATFORM_FILE_ATTACHMENT_POSIX_H_
#define IPC_IPC_PLATFORM_FILE_ATTACHMENT_POSIX_H_
#include "base/files/platform_file.h"
#include "base/files/scoped_file.h"
#include "ipc/ipc_message_attachment.h"
#include "ipc/ipc_message_support_export.h"
namespace IPC {
namespace internal {
class IPC_MESSAGE_SUPPORT_EXPORT PlatformFileAttachment
: public MessageAttachment {
public:
explicit PlatformFileAttachment(base::PlatformFile file);
explicit PlatformFileAttachment(base::ScopedFD file);
Type GetType() const override;
base::PlatformFile TakePlatformFile();
base::PlatformFile file() const { return file_; }
bool Owns() const { return owning_.is_valid(); }
private:
~PlatformFileAttachment() override;
base::PlatformFile file_;
base::ScopedFD owning_;
};
base::PlatformFile GetPlatformFile(scoped_refptr<MessageAttachment> attachment);
}
}
#endif