| Index: components/nacl/loader/nacl_ipc_adapter.cc
|
| diff --git a/components/nacl/loader/nacl_ipc_adapter.cc b/components/nacl/loader/nacl_ipc_adapter.cc
|
| index 86d256fb4a29e33d937337c49c5428daaee63d3e..266735734b2b257c78febfed845042619233113d 100644
|
| --- a/components/nacl/loader/nacl_ipc_adapter.cc
|
| +++ b/components/nacl/loader/nacl_ipc_adapter.cc
|
| @@ -512,7 +512,9 @@ bool NaClIPCAdapter::SendCompleteMessage(const char* buffer,
|
|
|
| // We actually discard the flags and only copy the ones we care about. This
|
| // is just because message doesn't have a constructor that takes raw flags.
|
| - scoped_ptr<IPC::Message> msg(new IPC::Message(header->routing, header->type));
|
| + scoped_ptr<IPC::Message> msg(
|
| + new IPC::Message(header->routing, header->type,
|
| + IPC::Message::PRIORITY_NORMAL));
|
| if (header->flags & IPC::Message::SYNC_BIT)
|
| msg->set_sync();
|
| if (header->flags & IPC::Message::REPLY_BIT)
|
|
|