| Index: chrome/common/ipc_message_utils.h
 | 
| ===================================================================
 | 
| --- chrome/common/ipc_message_utils.h	(revision 7533)
 | 
| +++ chrome/common/ipc_message_utils.h	(working copy)
 | 
| @@ -996,9 +996,11 @@
 | 
|  // Generic message subclasses
 | 
|  
 | 
|  // Used for asynchronous messages.
 | 
| -template <class Param>
 | 
| +template <class ParamType>
 | 
|  class MessageWithTuple : public Message {
 | 
|   public:
 | 
| +  typedef ParamType Param;
 | 
| +
 | 
|    MessageWithTuple(int32 routing_id, uint16 type, const Param& p)
 | 
|        : Message(routing_id, type, PRIORITY_NORMAL) {
 | 
|      WriteParam(this, p);
 | 
| 
 |