summaryrefslogtreecommitdiffstats
path: root/ipc/ipc_message_utils_impl.h
diff options
context:
space:
mode:
authorerg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-11 16:52:42 +0000
committererg@google.com <erg@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-11 16:52:42 +0000
commit13d49eaf47a59c68f952b5470d11afdd7bdce396 (patch)
treedc0a665d456b121f81113f2377f7fcd6e42eb683 /ipc/ipc_message_utils_impl.h
parentaefa99e2b6abcb3e1b347d10d2b9a0e4110c68f7 (diff)
downloadchromium_src-13d49eaf47a59c68f952b5470d11afdd7bdce396.zip
chromium_src-13d49eaf47a59c68f952b5470d11afdd7bdce396.tar.gz
chromium_src-13d49eaf47a59c68f952b5470d11afdd7bdce396.tar.bz2
Revert "FBTF: Allow forward declaration of classes passed to sync IPC messages."
This reverts commit r55735. BUG=none TEST=none TBR=mirandac Review URL: http://codereview.chromium.org/3152007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@55738 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ipc/ipc_message_utils_impl.h')
-rw-r--r--ipc/ipc_message_utils_impl.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/ipc/ipc_message_utils_impl.h b/ipc/ipc_message_utils_impl.h
index 53c7986..ba11990 100644
--- a/ipc/ipc_message_utils_impl.h
+++ b/ipc/ipc_message_utils_impl.h
@@ -25,19 +25,6 @@ MessageWithTuple<ParamType>::MessageWithTuple(
// subclass needs to have Log() to call Read(), which instantiates the above
// template.
-template <class SendParamType, class ReplyParamType>
-MessageWithReply<SendParamType, ReplyParamType>::MessageWithReply(
- int32 routing_id, uint32 type,
- const RefSendParam& send,
- const ReplyParam& reply)
- : SyncMessage(routing_id, type, PRIORITY_NORMAL,
- new ParamDeserializer<ReplyParam>(reply)) {
- WriteParam(this, send);
-}
-
-// TODO(erg): Migrate ReadSendParam()/ReadReplyParam() here when we can force
-// the visibility/linkage.
-
} // namespace IPC
#endif // IPC_IPC_MESSAGE_UTILS_IMPL_H_