// Copyright 2011 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef IPC_IPC_MESSAGE_ATTACHMENT_SET_H_ #define IPC_IPC_MESSAGE_ATTACHMENT_SET_H_ #include <stddef.h> #include <vector> #include "base/memory/ref_counted.h" #include "build/build_config.h" #include "ipc/ipc_message_support_export.h" namespace IPC { class MessageAttachment; // ----------------------------------------------------------------------------- // A MessageAttachmentSet is an ordered set of MessageAttachment objects // associated with an IPC message. All attachments are wrapped in a mojo handle // if necessary and sent over the mojo message pipe. // // For ChannelNacl under SFI NaCl, only Type::PLATFORM_FILE is supported. In // that case, the FD is sent over socket. // ----------------------------------------------------------------------------- class IPC_MESSAGE_SUPPORT_EXPORT MessageAttachmentSet : public base::RefCountedThreadSafe<MessageAttachmentSet> { … }; } // namespace IPC #endif // IPC_IPC_MESSAGE_ATTACHMENT_SET_H_