diff options
Diffstat (limited to 'chrome/common/ipc_sync_message.cc')
-rw-r--r-- | chrome/common/ipc_sync_message.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/chrome/common/ipc_sync_message.cc b/chrome/common/ipc_sync_message.cc index e895db9..9ed2679 100644 --- a/chrome/common/ipc_sync_message.cc +++ b/chrome/common/ipc_sync_message.cc @@ -77,7 +77,8 @@ int SyncMessage::GetMessageId(const Message& msg) { Message* SyncMessage::GenerateReply(const Message* msg) { DCHECK(msg->is_sync()); - Message* reply = new Message(msg->routing_id(), IPC_REPLY_ID, msg->priority()); + Message* reply = new Message(msg->routing_id(), IPC_REPLY_ID, + msg->priority()); reply->set_reply(); SyncHeader header; |