| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 // | 4 // |
| 5 // This file contains templates forward declared (but not defined) in | 5 // This file contains templates forward declared (but not defined) in |
| 6 // ipc_message_utils.h so that they are only instantiated in certain files, | 6 // ipc_message_utils.h so that they are only instantiated in certain files, |
| 7 // notably ipc_message_impl_macros.h and a few IPC unit tests. | 7 // notably ipc_message_impl_macros.h and a few IPC unit tests. |
| 8 | 8 |
| 9 #ifndef IPC_IPC_MESSAGE_UTILS_IMPL_H_ | 9 #ifndef IPC_IPC_MESSAGE_UTILS_IMPL_H_ |
| 10 #define IPC_IPC_MESSAGE_UTILS_IMPL_H_ | 10 #define IPC_IPC_MESSAGE_UTILS_IMPL_H_ |
| 11 | 11 |
| 12 namespace IPC { | 12 namespace IPC { |
| 13 | 13 |
| 14 template <class ParamType> | 14 template <class ParamType> |
| 15 MessageWithTuple<ParamType>::MessageWithTuple( | 15 MessageWithTuple<ParamType>::MessageWithTuple( |
| 16 int32 routing_id, uint32 type, const RefParam& p) | 16 int32 routing_id, uint32 type, const RefParam& p) |
| 17 : Message(routing_id, type, PRIORITY_NORMAL) { | 17 : Message(routing_id, type, PRIORITY_NORMAL) { |
| 18 WriteParam(this, p); | 18 WriteParam(this, p); |
| 19 } | 19 } |
| 20 | 20 |
| 21 // TODO(erg): Migrate MessageWithTuple<ParamType>::Read() here once I figure | 21 // TODO(erg): Migrate MessageWithTuple<ParamType>::Read() here once I figure |
| 22 // out why having the definition here doesn't export the symbols. | 22 // out why having the definition here doesn't export the symbols. |
| 23 | 23 |
| 24 // We can't migrate the template for Log() to MessageWithTuple, because each | 24 // We can't migrate the template for Log() to MessageWithTuple, because each |
| 25 // subclass needs to have Log() to call Read(), which instantiates the above | 25 // subclass needs to have Log() to call Read(), which instantiates the above |
| 26 // template. | 26 // template. |
| 27 | 27 |
| 28 template <class SendParamType, class ReplyParamType> | |
| 29 MessageWithReply<SendParamType, ReplyParamType>::MessageWithReply( | |
| 30 int32 routing_id, uint32 type, | |
| 31 const RefSendParam& send, | |
| 32 const ReplyParam& reply) | |
| 33 : SyncMessage(routing_id, type, PRIORITY_NORMAL, | |
| 34 new ParamDeserializer<ReplyParam>(reply)) { | |
| 35 WriteParam(this, send); | |
| 36 } | |
| 37 | |
| 38 // TODO(erg): Migrate ReadSendParam()/ReadReplyParam() here when we can force | |
| 39 // the visibility/linkage. | |
| 40 | |
| 41 } // namespace IPC | 28 } // namespace IPC |
| 42 | 29 |
| 43 #endif // IPC_IPC_MESSAGE_UTILS_IMPL_H_ | 30 #endif // IPC_IPC_MESSAGE_UTILS_IMPL_H_ |
| OLD | NEW |