Index: ipc/ipc_channel_posix.h |
diff --git a/ipc/ipc_channel_posix.h b/ipc/ipc_channel_posix.h |
index 1cb76102c3905eba818929ed536a73f47f048111..a792afa39163dc2503145e0bf654dedab2fc1ac8 100644 |
--- a/ipc/ipc_channel_posix.h |
+++ b/ipc/ipc_channel_posix.h |
@@ -17,8 +17,8 @@ |
#include "base/files/scoped_file.h" |
#include "base/message_loop/message_loop.h" |
#include "base/process/process.h" |
-#include "ipc/file_descriptor_set_posix.h" |
#include "ipc/ipc_channel_reader.h" |
+#include "ipc/ipc_message_attachment_set.h" |
#if !defined(OS_MACOSX) |
// On Linux, the seccomp sandbox makes it very expensive to call |
@@ -178,7 +178,7 @@ class IPC_EXPORT ChannelPosix : public Channel, |
// message has no payload and a full complement of descriptors. |
static const size_t kMaxReadFDs = |
(Channel::kReadBufferSize / sizeof(IPC::Message::Header)) * |
- FileDescriptorSet::kMaxDescriptorsPerMessage; |
+ MessageAttachmentSet::kMaxDescriptorsPerMessage; |
// Buffer size for file descriptors used for recvmsg. On Mac the CMSG macros |
// don't seem to be constant so we have to pick a "large enough" value. |