diff options
Diffstat (limited to 'chrome/common/ipc_channel_posix.h')
-rw-r--r-- | chrome/common/ipc_channel_posix.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/ipc_channel_posix.h b/chrome/common/ipc_channel_posix.h index d6ed17d..fbdd59b 100644 --- a/chrome/common/ipc_channel_posix.h +++ b/chrome/common/ipc_channel_posix.h @@ -14,7 +14,7 @@ #include <vector> #include "base/message_loop.h" -#include "chrome/common/descriptor_set_posix.h" +#include "chrome/common/file_descriptor_set_posix.h" namespace IPC { @@ -76,7 +76,7 @@ class Channel::ChannelImpl : public MessageLoopForIO::Watcher { // We assume a worst case: kReadBufferSize bytes of messages, where each // message has no payload and a full complement of descriptors. MAX_READ_FDS = (Channel::kReadBufferSize / sizeof(IPC::Message::Header)) * - DescriptorSet::MAX_DESCRIPTORS_PER_MESSAGE, + FileDescriptorSet::MAX_DESCRIPTORS_PER_MESSAGE, }; // This is a control message buffer large enough to hold kMaxReadFDs |