| Index: ipc/ipc_channel_posix.cc
|
| diff --git a/ipc/ipc_channel_posix.cc b/ipc/ipc_channel_posix.cc
|
| index 5b571007a62c3084abb05d028db3e84ae095a1ed..a74178a694b99dbaf4e759e30e195461a29d30ef 100644
|
| --- a/ipc/ipc_channel_posix.cc
|
| +++ b/ipc/ipc_channel_posix.cc
|
| @@ -745,7 +745,8 @@ int Channel::ChannelImpl::GetHelloMessageProcId() {
|
| void Channel::ChannelImpl::QueueHelloMessage() {
|
| // Create the Hello message
|
| scoped_ptr<Message> msg(new Message(MSG_ROUTING_NONE,
|
| - HELLO_MESSAGE_TYPE));
|
| + HELLO_MESSAGE_TYPE,
|
| + IPC::Message::PRIORITY_NORMAL));
|
| if (!msg->WriteInt(GetHelloMessageProcId())) {
|
| NOTREACHED() << "Unable to pickle hello message proc id";
|
| }
|
| @@ -938,7 +939,8 @@ void Channel::ChannelImpl::QueueCloseFDMessage(int fd, int hops) {
|
| case 2: {
|
| // Create the message
|
| scoped_ptr<Message> msg(new Message(MSG_ROUTING_NONE,
|
| - CLOSE_FD_MESSAGE_TYPE));
|
| + CLOSE_FD_MESSAGE_TYPE,
|
| + IPC::Message::PRIORITY_NORMAL));
|
| if (!msg->WriteInt(hops - 1) || !msg->WriteInt(fd)) {
|
| NOTREACHED() << "Unable to pickle close fd.";
|
| }
|
|
|